Skip to content

Commit

Permalink
Removing "--install-manpages" for now
Browse files Browse the repository at this point in the history
  • Loading branch information
iluvcapra committed Nov 24, 2024
1 parent 82129ce commit 77ce1e3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions wavinfo/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ def main():

parser.usage = 'wavinfo (--adm | --ixml) <FILE> +'

parser.add_option('--install-manpages',
help="Install manual pages for wavinfo",
default=False,
action='store_true')
# parser.add_option('--install-manpages',
# help="Install manual pages for wavinfo",
# default=False,
# action='store_true')

parser.add_option('--man',
help="Read the manual",
Expand All @@ -49,10 +49,10 @@ def main():

(options, args) = parser.parse_args(sys.argv)

if options.install_manpages:
print("Installing manpages...")
print(f"Docfiles at {__file__}")
return
# if options.install_manpages:
# print("Installing manpages...")
# print(f"Docfiles at {__file__}")
# return

if options.man:
print("Which man page?")
Expand Down

0 comments on commit 77ce1e3

Please sign in to comment.