summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2013-02-25 08:52:33 +0000
committerLars Wirzenius <liw@liw.fi>2013-02-25 08:52:33 +0000
commitb14461ddb15a01c643ac752efaf74fe18db1de3e (patch)
tree9d8b861ffd09384644b8a7d0ce41d7eea1ab08df
parent21376a824071928cfb82afcbffc0db60b82751de (diff)
downloadlarch-b14461ddb15a01c643ac752efaf74fe18db1de3e.tar.gz
Fix idspeed-test to use larch, not obnamlib
-rwxr-xr-xidpath-speed4
1 files changed, 2 insertions, 2 deletions
diff --git a/idpath-speed b/idpath-speed
index 42257a7..07bdc70 100755
--- a/idpath-speed
+++ b/idpath-speed
@@ -19,7 +19,7 @@ import os
import sys
import time
-import obnamlib
+import larch
def main():
@@ -29,7 +29,7 @@ def main():
bits = int(sys.argv[4])
skip = int(sys.argv[5])
- idpath = obnamlib.IdPath(dirname, depth, bits, skip)
+ idpath = larch.IdPath(dirname, depth, bits, skip)
start = time.time()
for i in xrange(n):
path = idpath.convert(i)