|
@@ -152,17 +152,17 @@ def _init_argparser():
|
|
import argparse
|
|
import argparse
|
|
argparser = argparse.ArgumentParser(description=None)
|
|
argparser = argparse.ArgumentParser(description=None)
|
|
argparser.add_argument(
|
|
argparser.add_argument(
|
|
- '--connected',
|
|
+ '-c', '--connected',
|
|
action='store_true',
|
|
action='store_true',
|
|
help='connected only',
|
|
help='connected only',
|
|
)
|
|
)
|
|
argparser.add_argument(
|
|
argparser.add_argument(
|
|
- '--disabled',
|
|
+ '-d', '--disabled',
|
|
action='store_true',
|
|
action='store_true',
|
|
help='disabled only (does not imply --connected)',
|
|
help='disabled only (does not imply --connected)',
|
|
)
|
|
)
|
|
argparser.add_argument(
|
|
argparser.add_argument(
|
|
- '--enabled',
|
|
+ '-e', '--enabled',
|
|
action='store_true',
|
|
action='store_true',
|
|
help='enabled only (does not imply --connected)',
|
|
help='enabled only (does not imply --connected)',
|
|
)
|
|
)
|