Skip to content

Commit

Permalink
Fix invalid syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenta Shoji committed Mar 15, 2015
1 parent e46cf85 commit 709e484
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/classify.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def main(argv):
# Load numpy array (.npy), directory glob (*.jpg), or image file.
args.input_file = os.path.expanduser(args.input_file)
if args.input_file.endswith('npy'):
print("Loading file: %s" %s args.input_file
print("Loading file: %s" % args.input_file)
inputs = np.load(args.input_file)
elif os.path.isdir(args.input_file):
print("Loading folder: %s" % args.input_file)
Expand Down

0 comments on commit 709e484

Please sign in to comment.