Skip to content

Commit

Permalink
Fix python2 StringIO import.
Browse files Browse the repository at this point in the history
  • Loading branch information
rudaporto authored and jensens committed Jun 26, 2018
1 parent 8ab36cf commit 1bedcff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Products/ZopeVersionControl/tests/common.py
Expand Up @@ -43,7 +43,7 @@ def common_setUp(self):
if PY3:
from io import cStringIO
else:
from cStringIO import cStringIO
from cStringIO import StringIO as cStringIO

s = DemoStorage()
self.connection = DB( s ).open()
Expand Down

0 comments on commit 1bedcff

Please sign in to comment.