Skip to content

Commit

Permalink
experimenting with parallel garbage collection part III
Browse files Browse the repository at this point in the history
  • Loading branch information
Henri Wahl committed Jul 12, 2018
1 parent dc1a8a5 commit 32689a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion seafadm
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,9 @@ if len(args) > 0:

if len(args) >= 4:
try:
seafile_dir = sys.argv[3]
seafile_dir = args[3]
if not os.path.exists(seafile_dir):
ErrorExit('{0} does not exist.'.format(seafile_dir))
except:
ErrorExit(USAGE)

Expand Down

0 comments on commit 32689a3

Please sign in to comment.