aboutsummaryrefslogtreecommitdiff
path: root/uritemplate/__init__.py
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2013-04-10 08:53:06 -0400
committerIan Cordasco <graffatcolmingov@gmail.com>2013-04-10 08:53:06 -0400
commitb39cd0968b5e5178b1285fd571c8648adf4d0741 (patch)
tree1a01d4fbe07d3e5e58130a6392927d22fd7bb5af /uritemplate/__init__.py
parentf453d4148de12234ee1301e918dd49b7f00f8dae (diff)
downloaduritemplates-b39cd0968b5e5178b1285fd571c8648adf4d0741.tar.gz
Namespace the classes properly to avoid conflict
Diffstat (limited to 'uritemplate/__init__.py')
-rw-r--r--uritemplate/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/uritemplate/__init__.py b/uritemplate/__init__.py
index 9e995e4..dcf2156 100644
--- a/uritemplate/__init__.py
+++ b/uritemplate/__init__.py
@@ -17,6 +17,6 @@ __copyright__ = 'Copyright 2013 Ian Cordasco'
__version__ = '0.0.0'
__version_info__ = tuple(int(i) for i in __version__.split(','))
-from uritemplate.api import Template, expand
+from uritemplate.api import URITemplate, expand
-__all__ = [Template, expand]
+__all__ = [URITemplate, expand]