diff --git a/pubs/content.py b/pubs/content.py index cfa634f..796302b 100644 --- a/pubs/content.py +++ b/pubs/content.py @@ -1,6 +1,5 @@ import sys import os -import io import shutil from .p3 import urlparse, HTTPConnection, urlopen diff --git a/tests/test_usecase.py b/tests/test_usecase.py index e1ca9f7..56553d0 100644 --- a/tests/test_usecase.py +++ b/tests/test_usecase.py @@ -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()