File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 55import logging
66import os
77
8+ from pkgcore .repository import errors as repo_errors
89from pkgcore .util import commandline
10+ from pkgcore .util .commandline import _mk_domain
911from snakeoil .cli import arghparse
1012from snakeoil .contexts import patch
1113from snakeoil .klass import jit_attr_none
1214from snakeoil .mappings import OrderedSet
13- from pkgcore .repository import errors as repo_errors
14- from pkgcore .util .commandline import _mk_domain
1515
1616from . import const
1717
1818
1919class Tool (commandline .Tool ):
20- def main (self ):
20+ def main (self , * args , ** kwargs ):
2121 # suppress all pkgcore log messages
2222 logging .getLogger ("pkgcore" ).setLevel (100 )
23- return super ().main ()
23+ return super ().main (* args , ** kwargs )
2424
2525
2626class ConfigArg (argparse ._StoreAction ):
You can’t perform that action at this time.
0 commit comments