Skip to content

Commit

Permalink
Fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
harrisj committed Apr 6, 2011
1 parent 0358b8a commit b9f71df
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion equitube/equitube.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,24 @@ def _parseOptions(self, argv, parser):
help=''.join(spring_help_list))
deltaslope_help_list = [
"This option allows you to specify the amount of change ",
"the slope undergoes at each iteration"
"the slope undergoes at each iteration."
]
parser.add_option('--deltaslope', '-m', default = 0.05,
help=''.join(deltaslope_help_list))
debug_help_list = [
"Prints relevant debugging information."
]
parser.add_option('--debug', '-d', default = False,
help=''.join(debug_help_list))
verbose_help_list = [
"Turns on verbosity of the output."
]
parser.add_option('--verbose', '-v', default = False,
help=''.join(verbose_help_list))

return parser.parse_args()



def Run(self):
try:
Expand Down

0 comments on commit b9f71df

Please sign in to comment.