summaryrefslogtreecommitdiffstats
path: root/nova/fakememcache.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/fakememcache.py')
-rw-r--r--nova/fakememcache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/fakememcache.py b/nova/fakememcache.py
index 67f46dbdc..e4f238aa9 100644
--- a/nova/fakememcache.py
+++ b/nova/fakememcache.py
@@ -18,14 +18,14 @@
"""Super simple fake memcache client."""
-import utils
+from nova import utils
class Client(object):
"""Replicates a tiny subset of memcached client interface."""
def __init__(self, *args, **kwargs):
- """Ignores the passed in args"""
+ """Ignores the passed in args."""
self.cache = {}
def get(self, key):