Skip to content

Commit 212f663

Browse files
committed
Fix eslint
1 parent 30dba04 commit 212f663

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ftpsync/pyftpsync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def run():
201201
if callable(getattr(args, "command", None)):
202202
# scan_handler
203203
try:
204-
return getattr(args, "command")(parser, args)
204+
return args.command(parser, args)
205205
except KeyboardInterrupt:
206206
print("\nAborted by user.", file=sys.stderr)
207207
sys.exit(3)

0 commit comments

Comments
 (0)