We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb724ed commit 8a35645Copy full SHA for 8a35645
1 file changed
src/pkgdev/cli.py
@@ -5,22 +5,22 @@
5
import logging
6
import os
7
8
+from pkgcore.repository import errors as repo_errors
9
from pkgcore.util import commandline
10
+from pkgcore.util.commandline import _mk_domain
11
from snakeoil.cli import arghparse
12
from snakeoil.contexts import patch
13
from snakeoil.klass import jit_attr_none
14
from snakeoil.mappings import OrderedSet
-from pkgcore.repository import errors as repo_errors
-from pkgcore.util.commandline import _mk_domain
15
16
from . import const
17
18
19
class Tool(commandline.Tool):
20
- def main(self):
+ def main(self, *args, **kwargs):
21
# suppress all pkgcore log messages
22
logging.getLogger("pkgcore").setLevel(100)
23
- return super().main()
+ return super().main(*args, **kwargs)
24
25
26
class ConfigArg(argparse._StoreAction):
0 commit comments