1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Prefer StringIO.StringIO over io.

This commit is contained in:
Ross McFarland
2019-10-14 19:31:04 -07:00
parent 4a41c98c16
commit 6f9842301e

View File

@@ -1,9 +1,9 @@
#!/usr/bin/env python
try:
from io import StringIO
except ImportError:
from StringIO import StringIO
except ImportError:
from io import StringIO
from os.path import dirname, join
import octodns