Merge pull request #504 from archlinux/torxed-fix-497
Fixing newlines not being placed correctly on SysCommand()
This commit is contained in:
commit
93bc0ebd0f
|
|
@ -333,6 +333,10 @@ class SysCommand:
|
|||
while self.session.ended is None:
|
||||
self.session.poll()
|
||||
|
||||
if self.peak_output:
|
||||
sys.stdout.write('\n')
|
||||
sys.stdout.flush()
|
||||
|
||||
except SysCallError:
|
||||
return False
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue