3
0
mirror of https://git.launchpad.net/ubuntu-dev-tools synced 2025-03-13 08:01:09 +00:00
This commit is contained in:
Stefano Rivera 2010-11-24 20:01:06 +02:00
parent d814f79fa1
commit 6b187026f5

@ -75,7 +75,7 @@ class Control(object):
if wrap_always or length > 80: if wrap_always or length > 80:
indentation = " " indentation = " "
if not short_indent: if not short_indent:
indentation *= (len(entry) + 2) indentation *= len(entry) + 2
packages_with_indention = map(lambda x: indentation + x, packages) packages_with_indention = map(lambda x: indentation + x, packages)
packages_with_indention = ",\n".join(packages_with_indention) packages_with_indention = ",\n".join(packages_with_indention)
if short_indent: if short_indent: