Skip to content

Commit

Permalink
Fixed help message - should be capital 'U'
Browse files Browse the repository at this point in the history
  • Loading branch information
jessamynsmith committed Apr 2, 2015
1 parent 1b2f3bf commit 6d0cd97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pipreq/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def verify_args(args):
has_one_option = (bool(args.create) ^ bool(args.generate) ^ bool(args.upgrade)
^ bool(args.remove_extra))
if not has_one_option:
return 'Must specify generate (-g) or create/upgrade/remove-missing (-[cux]) with packages'
return 'Must specify generate (-g) or create/upgrade/remove-missing (-[cUx]) with packages'
return None


Expand Down
2 changes: 1 addition & 1 deletion test/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def test_verify_args_no_args(self):

error_message = cli.verify_args(args)

expected_error = ('Must specify generate (-g) or create/upgrade/remove-missing (-[cux]) '
expected_error = ('Must specify generate (-g) or create/upgrade/remove-missing (-[cUx]) '
'with packages')
self.assertEqual(expected_error, error_message)

Expand Down

0 comments on commit 6d0cd97

Please sign in to comment.