Skip to content

Commit

Permalink
Don't require proper casing for --manage option. Fixes #7.
Browse files Browse the repository at this point in the history
  • Loading branch information
timsutton committed Sep 9, 2013
1 parent ea0f23f commit 34ccb53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mcxToProfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,8 @@ def main():
if not options.manage:
manage = 'Always'
else:
manage = options.manage
# ensure capitalization
manage = options.manage[0].upper() + options.manage[1:].lower()

if options.output:
output_file = options.output
Expand Down

0 comments on commit 34ccb53

Please sign in to comment.