File tree Expand file tree Collapse file tree 2 files changed +17
-18
lines changed Expand file tree Collapse file tree 2 files changed +17
-18
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ def main(argv=None):
4949
5050 if opts ['--print-data-base' ]:
5151 print ("List of detected aliases:" )
52- print ('\n ' .join (alias for alias in sorted (commands .keys ())))
52+ print ('\n ' .join (sorted (commands .keys ())))
5353 return
5454
5555 if not opts ['<target>' ]:
Original file line number Diff line number Diff line change 22
33__all__ = ["ConfigParser" , "StringIO" , "_sh" , "shlex" ]
44
5- if True : # pragma: no cover
6- try :
7- import ConfigParser
8- import StringIO
9- except ImportError :
10- import configparser as ConfigParser
11- import io as StringIO
12-
13- try :
14- _unich = unichr
15- except NameError :
16- _unich = chr
17-
18- try :
19- _unicode = unicode
20- except NameError :
21- _unicode = str
5+ try :
6+ import ConfigParser
7+ import StringIO
8+ except ImportError :
9+ import configparser as ConfigParser
10+ import io as StringIO
11+
12+ try :
13+ _unich = unichr
14+ except NameError :
15+ _unich = chr
16+
17+ try :
18+ _unicode = unicode
19+ except NameError :
20+ _unicode = str
2221
2322if sys .version_info >= (2 , 7 ): # pragma: no cover
2423 import shlex
You can’t perform that action at this time.
0 commit comments