Fixes indent and removes unused io import.

This commit is contained in:
Olivier Mangin 2017-07-11 17:13:39 -04:00
parent 3b4cfe635d
commit 323fb8b674
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
import sys
import os
import io
import shutil
from .p3 import urlparse, HTTPConnection, urlopen

View File

@ -124,7 +124,7 @@ class CommandTestCase(fake_env.TestFakeFs):
self.fail('Unexpected input asked by command: {}.'.format(
actual_cmd))
if PRINT_OUTPUT:
print(outs)
print(outs)
return outs
except SystemExit as exc:
exc_class, exc, tb = sys.exc_info()