aboutsummaryrefslogtreecommitdiffstats
path: root/github3/handlers/base.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--github3/handlers/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/github3/handlers/base.py b/github3/handlers/base.py
index c27b80c..0b3fa8a 100644
--- a/github3/handlers/base.py
+++ b/github3/handlers/base.py
@@ -15,7 +15,7 @@ class Handler(object):
def _prefix_resource(self, resource):
prefix = getattr(self, 'prefix', '')
- return '/'.join((prefix, resource)).strip('/')
+ return '/'.join((prefix, str(resource))).strip('/')
def _get_converter(self, **kwargs):
converter = kwargs.get(