Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/tree.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-11 20:20:24 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-11 20:20:24 (GMT)
commitcaaef91a79b5f4a467eb8f8b79460e42528fb3b7 (patch)
treefdf3539ccb33cb22774a67e663a7b496f2024d0f /tests/tree.py
parent92e68bb2352a340b90a020759f2359d511ecf6d0 (diff)
Missing parameter
Diffstat (limited to 'tests/tree.py')
-rw-r--r--tests/tree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tree.py b/tests/tree.py
index e46a114..bde3106 100644
--- a/tests/tree.py
+++ b/tests/tree.py
@@ -11,7 +11,7 @@ def retry_find(func):
while n_retries <= 10:
print "Try %d, name=%s role_name=%s" % \
- (kwargs["name"], kwargs["role_name"])
+ (n_retries, kwargs["name"], kwargs["role_name"])
result = func(*args, **kwargs)
if result is not None: