-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Misc fixes #188
Misc fixes #188
Conversation
As a side effect, this fixes the missing trailing line break.
If you're looking into running uninstalled, you likely don't want to setup as root.
@@ -296,13 +296,11 @@ def add_arguments(self): | |||
self.parser.add_argument('--track-template', | |||
action="store", dest="track_template", | |||
default=DEFAULT_TRACK_TEMPLATE, | |||
help="template for track file naming " | |||
"(default default)") | |||
help="template for track file naming") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe the default value should be kept but in a correct way (not default default).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's already displayed.
--track-template TRACK_TEMPLATE
template for track file naming (default default)
(default: %r/%A - %d/%t. %a - %n)
--disc-template DISC_TEMPLATE
template for disc file naming (default default)
(default: %r/%A - %d/%A - %d)
(This is before the patch)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, I suspected I was missing something obvious. Sorry for the useless remark!
self.parser.add_argument('--disc-template', | ||
action="store", dest="disc_template", | ||
default=DEFAULT_DISC_TEMPLATE, | ||
help="template for disc file naming " | ||
"(default default)") | ||
help="template for disc file naming") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above.
Merged, thanks. |
First commit fixes the output of
whipper cd rip --help
(note: the CD-DA check is annoying).The second one was motivated by the missing line break when I got the error.
Third one doesn't need much comment.