diff options
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/storage/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/storage/base.py b/libbe/storage/base.py index 1b0ceba..d88f802 100644 --- a/libbe/storage/base.py +++ b/libbe/storage/base.py @@ -897,7 +897,7 @@ if TESTING == True: children = [] for i in range(10): new_child = str(i) - self.s.add(new_child, 'parent', directory=(i % 2 == 0)) + self.s.add(new_child, 'parent') self.s.set(new_child, self.val) revs.append(self.s.commit('%s: %d' % (self.commit_msg, i), self.commit_body)) |