Commit a4c132fd authored by Cody Zacharias's avatar Cody Zacharias Committed by GitHub

Fix -o parameter

parent b22a1cdf
......@@ -61,7 +61,7 @@ def main():
error("Contradicting Args", "--userid and -u cannot be used together.")
if args.tweets and args.users:
error("Contradicting Args", "--users and --tweets cannot be used together.")
if args.csv and args.o is None:
if args.csv and args.output is None:
error("Error", "Please specify an output file (Example: -o file.csv).")
c = twint.Config()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment