summaryrefslogtreecommitdiff
path: root/pygments/cmdline.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/cmdline.py')
-rw-r--r--pygments/cmdline.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/pygments/cmdline.py b/pygments/cmdline.py
index 8e1d329a..b70d9e6d 100644
--- a/pygments/cmdline.py
+++ b/pygments/cmdline.py
@@ -75,30 +75,26 @@ def _print_lflist():
print "~~~~~~~"
info = []
- maxlen = 0
for _, fullname, names, exts, _ in LEXERS.itervalues():
tup = (', '.join(names)+':', fullname,
exts and '(extensions ' + ', '.join(exts) + ')' or '')
info.append(tup)
- if len(tup[0]) > maxlen: maxlen = len(tup[0])
info.sort()
for i in info:
- print ('%-'+str(maxlen)+'s %s %s') % i
+ print ('%s\n %s %s') % i
print
print "Formatters:"
print "~~~~~~~~~~~"
info = []
- maxlen = 0
for fullname, names, exts, doc in FORMATTERS.itervalues():
tup = (', '.join(names)+':', doc,
exts and '(extensions ' + ', '.join(exts) + ')' or '')
info.append(tup)
- if len(tup[0]) > maxlen: maxlen = len(tup[0])
info.sort()
for i in info:
- print ('%-'+str(maxlen)+'s %s %s') % i
+ print ('%s\n %s %s') % i
def main(args):