Skip to content

Commit

Permalink
Correct information
Browse files Browse the repository at this point in the history
Signed-off-by: cash qian <[email protected]>
  • Loading branch information
jhqian committed Jun 24, 2014
1 parent eed22b0 commit bf6732a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ezez.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ def trim(line):
return out

def usage():
print "%s [-hv] -o out_dir -y year -m month -d day -a artwork"
print "%s [-hv] -o out_dir -y year -m month -d day -a artwork" % (os.path.basename(sys.argv[0]))

if not len(sys.argv[1:]):
usage()
sys.exit(1)

try:
opts, args = getopt.getopt(sys.argv[1:], "fhivo:y:m:d:a:", ["help", "output=", "year=", "month=", "day=", "artwork="])
Expand Down

0 comments on commit bf6732a

Please sign in to comment.