Skip to content

Commit

Permalink
removing dest from arg
Browse files Browse the repository at this point in the history
  • Loading branch information
toddstoffer committed Mar 16, 2017
1 parent 69d9436 commit 857a30a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions utils/twarc-archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ def main():
parser.add_argument("--tweet_mode", action="store", default="compat",
dest="tweet_mode", choices=["compat", "extended"],
help="set tweet mode")
parser.add_argument("--twarc_command", action="store", default="search",
dest="twarc_command", choices=["search", "timeline"],
parser.add_argument("--twarc_command", action="store", default="search", choices=["search", "timeline"],
help="select twarc command to be used for harvest, currently supports search and timeline")

args = parser.parse_args()
Expand Down

0 comments on commit 857a30a

Please sign in to comment.