summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-02-12 19:31:55 +0200
committerLars Wirzenius <liw@liw.fi>2017-02-12 19:31:55 +0200
commit2c8a3bc033b334cb74baaaf40cd63af131068a21 (patch)
treee4a8be979b7161295e652c349ec76b1a516ef89a
parentcd16849d4bd4e3d3777c84f5cb345dd20fa3cb73 (diff)
downloadobnam-2c8a3bc033b334cb74baaaf40cd63af131068a21.tar.gz
Fix typos
-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):