mirror of
https://github.com/docker/compose.git
synced 2025-04-07 19:55:07 +02:00
Account for length of the ellipsis string when truncating commands
This commit is contained in:
parent
c4f5ed839f
commit
af1b0ed088
@ -158,7 +158,7 @@ class TopLevelCommand(Command):
|
||||
for container in containers:
|
||||
command = container.human_readable_command
|
||||
if len(command) > 30:
|
||||
command = '%s ...' % command[:30]
|
||||
command = '%s ...' % command[:26]
|
||||
rows.append([
|
||||
container.name,
|
||||
command,
|
||||
|
Loading…
x
Reference in New Issue
Block a user