summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfwood <john.wood@rackspace.com>2013-11-25 17:10:44 -0600
committerjfwood <john.wood@rackspace.com>2013-11-25 17:10:44 -0600
commit0abd5190f6e9d55163fdf8a6d83c0f106aea9cf3 (patch)
tree477d17958139f4bb7c5a69e8d30b42b4f43a7d57
parent729cb647b97c87a61ff288d02ece4bbddd924bc6 (diff)
downloadpython-barbicanclient-0abd5190f6e9d55163fdf8a6d83c0f106aea9cf3.tar.gz
Remove unused utils file.
-rw-r--r--barbicanclient/common/utils.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/barbicanclient/common/utils.py b/barbicanclient/common/utils.py
deleted file mode 100644
index 55b1a0d..0000000
--- a/barbicanclient/common/utils.py
+++ /dev/null
@@ -1,10 +0,0 @@
-import urllib
-
-
-def proc_template(template, **kwargs):
- """
- Processes a templated URL by substituting the
- dictionary args and returning the strings.
- """
- return template.format(**dict([(k, urllib.quote(v))
- for k, v in kwargs.items()]))