Skip to content

Commit ec5541b

Browse files
committed
Fix Python2-specific import error
1 parent ddf794d commit ec5541b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python/espressomd/MDA_ESP/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"""
4949

5050
try:
51-
import cStringIO as StringIO
51+
from cStringIO import StringIO
5252
except ImportError:
5353
from io import StringIO
5454

0 commit comments

Comments
 (0)