Browse Source

Prefer StringIO.StringIO over io.

pull/384/head
Ross McFarland 6 years ago
parent
commit
6f9842301e
No known key found for this signature in database GPG Key ID: 61C10C4FC8FE4A89
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      setup.py

+ 2
- 2
setup.py 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


Loading…
Cancel
Save