summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosmin Basca <cosmin.basca@gmail.com>2014-08-12 11:42:15 +0200
committerCosmin Basca <cosmin.basca@gmail.com>2014-08-12 11:42:15 +0200
commit8148816f11231bf1fc364b091993b8e6be36e10e (patch)
tree8bef1e8bb7a81296e31f7281f3edf01863650ac4
parentfdc077c384e800259755d079828683a9af59bb53 (diff)
downloadrepoze-lru-8148816f11231bf1fc364b091993b8e6be36e10e.tar.gz
fixed comments to original, after PyCharm's autoformatter messed with their indentation (see "# else" comments)
-rw-r--r--repoze/lru/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/repoze/lru/__init__.py b/repoze/lru/__init__.py
index c761b8e..8e8b571 100644
--- a/repoze/lru/__init__.py
+++ b/repoze/lru/__init__.py
@@ -170,7 +170,7 @@ class LRUCache(Cache):
# We have no lock, but worst thing that can happen is that we
# set another key's entry to False.
self.clock_refs[entry[0]] = False
- # else: key was not in cache. Nothing to do.
+ # else: key was not in cache. Nothing to do.
class ExpiringLRUCache(Cache):
@@ -305,7 +305,7 @@ class ExpiringLRUCache(Cache):
# We have no lock, but worst thing that can happen is that we
# set another key's entry to False.
self.clock_refs[entry[0]] = False
- # else: key was not in cache. Nothing to do.
+ # else: key was not in cache. Nothing to do.
class lru_cache(object):