We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 297ae68 + c310a8b commit 92f813fCopy full SHA for 92f813f
pynux/nxid.py
@@ -16,6 +16,10 @@
16
except ImportError:
17
# Fall back to Python 2's urllib2
18
from urllib2 import urlopen
19
+try:
20
+ unicode = unicode ## for python 2
21
+except NameError:
22
+ unicode = str ## for python 3
23
import EZID
24
from pynux import utils
25
from pynux.utils import utf8_arg
setup.py
@@ -2,7 +2,7 @@
2
from setuptools import setup, find_packages
3
setup(
4
name='pynux',
5
- version = "1.0.4",
+ version = "1.0.5",
6
packages = find_packages(),
7
install_requires = [
8
'requests',
0 commit comments