summaryrefslogtreecommitdiff
path: root/obnamlib/fmt_ga/tree.py
diff options
context:
space:
mode:
Diffstat (limited to 'obnamlib/fmt_ga/tree.py')
-rw-r--r--obnamlib/fmt_ga/tree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/obnamlib/fmt_ga/tree.py b/obnamlib/fmt_ga/tree.py
index 153cf59c..992870b3 100644
--- a/obnamlib/fmt_ga/tree.py
+++ b/obnamlib/fmt_ga/tree.py
@@ -164,12 +164,12 @@ class DirectoryObjectCache(object):
def _clear_immutable(self): # pragma: no cover
if len(self._objs) >= self._max_objs:
- logging.debug('DirObjCache has %s iterms', len(self._objs))
+ logging.debug('DirObjCache has %s items', len(self._objs))
for pathname, dirobj in self._objs.items():
if not dirobj.is_mutable():
del self._objs[pathname]
logging.debug(
- 'After dropping immutable, DirObjCache has %s iterms',
+ 'After dropping immutable, DirObjCache has %s items',
len(self._objs))
def clear(self):