Browse Source

No six for setup.py, try/except both options

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

+ 4
- 1
setup.py View File

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


Loading…
Cancel
Save