Browse Source

Updated StringIO import to support io module

Signed-off-by: Tony Witherspoon <[email protected]>
Tony Witherspoon 9 years ago
parent
commit
3368887a29
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/unit/cli_test.py

+ 1 - 1
tests/unit/cli_test.py

@@ -5,7 +5,7 @@ from __future__ import unicode_literals
 import os
 import shutil
 import tempfile
-from StringIO import StringIO
+from io import StringIO
 
 import docker
 import py