Trivial cosmetic patch by Ömer Fadıl Usta to fix the layout issue of 'pisi help' (#8907).

BUG:FIXED:8907
This commit is contained in:
Ozan Çağlayan
2008-12-27 11:30:23 +00:00
parent 186aae16c6
commit 4b106ffee5
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
2008-12-27 Ozan Çağlayan <ozan@pardus.org.tr>
* (pisi/cli/command.py): Trivial cosmetic patch by Ömer Fadıl Usta
to fix the layout issue of 'pisi help' (#8907).
2008-12-23 Gökmen Göksel <gokmen@pardus.org.tr>
* Fix dodoc for python
+1 -1
View File
@@ -58,7 +58,7 @@ class Command(object):
name = commandcls.name[0]
if commandcls.name[1]:
name += ' (%s)' % commandcls.name[1]
s += '%21s - %s\n' % (name, summary)
s += ' %23s - %s\n' % (name, summary)
return s
@staticmethod