summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2013-11-06 21:15:37 +0000
committerLars Wirzenius <liw@liw.fi>2013-11-06 21:15:37 +0000
commitb2cc3014a7060ecb451a3c2c064f146c692ddd68 (patch)
tree976096da32df2d6d9b53f4d12277fd80098b8661
parent95bdc966cf8abe4e79ce32a8accd2e323b487cc1 (diff)
downloadlarch-b2cc3014a7060ecb451a3c2c064f146c692ddd68.tar.gz
Fix typo on tracing message
-rw-r--r--larch/refcountstore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/larch/refcountstore.py b/larch/refcountstore.py
index 6a9411f..2eea90c 100644
--- a/larch/refcountstore.py
+++ b/larch/refcountstore.py
@@ -75,7 +75,7 @@ class RefcountStore(object):
def set_refcount(self, node_id, refcount):
'''Set the reference count for a given node.'''
- tracing.trace('setting refcoutn for %s to %s' % (node_id, refcount))
+ tracing.trace('setting refcount for %s to %s' % (node_id, refcount))
self.refcounts[node_id] = refcount
self.dirty.add(node_id)