File tree 2 files changed +17
-18
lines changed
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):
49
49
50
50
if opts ['--print-data-base' ]:
51
51
print ("List of detected aliases:" )
52
- print ('\n ' .join (alias for alias in sorted (commands .keys ())))
52
+ print ('\n ' .join (sorted (commands .keys ())))
53
53
return
54
54
55
55
if not opts ['<target>' ]:
Original file line number Diff line number Diff line change 2
2
3
3
__all__ = ["ConfigParser" , "StringIO" , "_sh" , "shlex" ]
4
4
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
22
21
23
22
if sys .version_info >= (2 , 7 ): # pragma: no cover
24
23
import shlex
You can’t perform that action at this time.
0 commit comments