]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
directories: minor change: fix warning message from the benchmarking script
authorZooko O'Whielacronx <zooko@zooko.com>
Mon, 20 Jul 2009 00:21:14 +0000 (17:21 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Mon, 20 Jul 2009 00:21:14 +0000 (17:21 -0700)
src/allmydata/test/bench_dirnode.py

index df534345b18d8a5aff1d054dff2b667774b58bab..70b5ee4eb77a8f88f0f82d974ea8a2b34a997726 100644 (file)
@@ -104,7 +104,7 @@ def prof_benchmarks():
 if __name__ == "__main__":
     if '--profile' in sys.argv:
         if os.path.exists(PROF_FILE_NAME):
-            print "WARNING: profiling results file '%s' already exists -- the profiling results from this run will be added into the profiling results stored in that file and then the sum of them will be printed out after this run."
+            print "WARNING: profiling results file '%s' already exists -- the profiling results from this run will be added into the profiling results stored in that file and then the sum of them will be printed out after this run." % (PROF_FILE_NAME,)
         prof_benchmarks()
         print_stats()
     else: