From d4eae3ef98153977ebf4b0213ee02496b38789a1 Mon Sep 17 00:00:00 2001 From: Joel Schaerer Date: Fri, 13 Feb 2009 23:27:10 +0100 Subject: [PATCH] bugfix --- autojump | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autojump b/autojump index bffa791..b092a76 100755 --- a/autojump +++ b/autojump @@ -92,7 +92,7 @@ else: break else: uniqadd(results,path) if completion: - for p in results: print p + print " ".join(results) cPickle.dump(path_dict,open(dic_file+".tmp",'w'),-1) import shutil shutil.copy(dic_file+".tmp",dic_file) #cPickle.dump doesn't seem to be atomic, so this is more secure