summaryrefslogtreecommitdiff
path: root/pbr/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'pbr/core.py')
-rw-r--r--pbr/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbr/core.py b/pbr/core.py
index 8cee9b0..1432b27 100644
--- a/pbr/core.py
+++ b/pbr/core.py
@@ -52,7 +52,7 @@ from pbr.d2to1 import util
core.Distribution = dist._get_unpatched(core.Distribution)
if sys.version_info[0] == 3:
string_type = str
- integer_types = int
+ integer_types = (int,)
else:
string_type = basestring
integer_types = (int, long)