From 0abd5190f6e9d55163fdf8a6d83c0f106aea9cf3 Mon Sep 17 00:00:00 2001 From: jfwood Date: Mon, 25 Nov 2013 17:10:44 -0600 Subject: [PATCH] Remove unused utils file. --- barbicanclient/common/utils.py | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 barbicanclient/common/utils.py diff --git a/barbicanclient/common/utils.py b/barbicanclient/common/utils.py deleted file mode 100644 index 55b1a0df..00000000 --- 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()]))