Skip to content

Commit

Permalink
Fix typo in startup warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyene authored Dec 18, 2017
1 parent 257bb5b commit a381f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dmoj/judgeenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def find_directories_by_depth(dir, depth):
try:
problem_dirs += find_directories_by_depth(get_path(_root, recursive_root), int(depth))
except ValueError:
startup_warnings.append('illegal depth arguement %s' % depth)
startup_warnings.append('illegal depth argument %s' % depth)
else:
problem_dirs.append(get_path(_root, dir))
problem_dirs = tuple(problem_dirs)
Expand Down

0 comments on commit a381f1a

Please sign in to comment.