Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit 610f6de

Browse files
author
totokaka
committed
v0.3-alpha
Fixed design, it looks SOO much better. Some other fixing, I don't remember what is.
1 parent d0812b9 commit 610f6de

File tree

5 files changed

+343
-213
lines changed

5 files changed

+343
-213
lines changed

mcman/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
""" __init__ for mcman. """
22
__author__ = 'totokaka'
3-
__version__ = '0.2-1'
3+
__version__ = '0.3'

mcman/mcman.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def setup_plugin_commands(sub_parsers, parent):
147147
parser.set_defaults(command=Plugins)
148148

149149
# The plugin sub commands
150-
sub_parsers = parser.add_subparsers()
150+
sub_parsers = parser.add_subparsers(title='subcommands')
151151
# search, sub command of plugin
152152
search_parser = sub_parsers.add_parser(
153153
'search', aliases=['s'],
@@ -165,7 +165,7 @@ def setup_plugin_commands(sub_parsers, parent):
165165
parents=[sub_parent])
166166
info_parser.set_defaults(subcommand='info')
167167
info_parser.add_argument(
168-
'plugins', metavar='plugin', type=str, nargs='+',
168+
'plugins', metavar='plugin', type=str,
169169
help='Plugin(s) to get info for.')
170170
# download, sub command of plugin
171171
download_parser = sub_parsers.add_parser(

0 commit comments

Comments
 (0)