osclib/list_command: 24ae4ba81 broke formatting.

The author was attempting to port for python3, but changed the meaning:

- print ' ', line
+ print(' ' + line)

The first prints "  $line", while the second:
                 " $line".

This changes console output from:

science
 666254 libArcus-lulzbot               -> delete       (delete request)
         3 more users

back to:

science
  666254 libArcus-lulzbot               -> delete       (delete request)
         3 more users

(ignore lines up and standard double space indent used)
This commit is contained in:
Jimmy Berry 2019-02-07 10:28:26 -06:00
parent 4e24164ed1
commit 3e8a85d9c3

View File

@ -59,7 +59,7 @@ class ListCommand:
if message:
line += '\n' + Fore.WHITE + message + Fore.RESET
print(' ' + line)
print(' ', line)
if len(splitter.other):
non_ring_packages = []