mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-18 20:34:39 +01:00
6 lines
124 B
Python
6 lines
124 B
Python
# Import the StringIO object.
|
|
try:
|
|
from cStringIO import StringIO
|
|
except ImportError:
|
|
from StringIO import StringIO
|