Skip to content

Commit

Permalink
Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Apr 6, 2019
1 parent 30dba04 commit 212f663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ftpsync/pyftpsync.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def run():
if callable(getattr(args, "command", None)):
# scan_handler
try:
return getattr(args, "command")(parser, args)
return args.command(parser, args)
except KeyboardInterrupt:
print("\nAborted by user.", file=sys.stderr)
sys.exit(3)
Expand Down

0 comments on commit 212f663

Please sign in to comment.