Skip to content

Commit

Permalink
running create_jobs alone just prints usage and bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
benlindsay committed Feb 13, 2018
1 parent 64f77ec commit 0ca2a2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/create_jobs
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ def parse_t(args):

def main(args):

# Parse help argument '-h'
if '-h' in args:
# Parse help argument '-h' or lack of args
if '-h' in args or len(args) == 0:
print(usage)
sys.exit()

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
setup(
name = 'create_jobs',
packages = ['create_jobs'],
version = '0.1.1',
version = '0.1.2',
description = desc,
long_description = long_desc,
requires = ['numpy', 'pandas'],
Expand Down

0 comments on commit 0ca2a2d

Please sign in to comment.