]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
crawler: use fileutil.move_info_place in preference to our own version
authorBrian Warner <warner@lothar.com>
Thu, 19 Feb 2009 06:13:42 +0000 (23:13 -0700)
committerBrian Warner <warner@lothar.com>
Thu, 19 Feb 2009 06:13:42 +0000 (23:13 -0700)
src/allmydata/storage/crawler.py

index e79ba94ddca1001e7ddc44951678509a2719cca6..e4f8622c988c6de081b525359d4a1c1456c5190b 100644 (file)
@@ -1,8 +1,9 @@
 
-import sys, os, time, struct, pickle
+import os, time, struct, pickle
 from twisted.internet import reactor
 from twisted.application import service
 from allmydata.storage.server import si_b2a
+from allmydata.util import fileutil
 
 class TimeSliceExceeded(Exception):
     pass
@@ -89,10 +90,7 @@ class ShareCrawler(service.MultiService):
         f = open(tmpfile, "wb")
         pickle.dump(state, f)
         f.close()
-        if "win32" in sys.platform.lower():
-            # sigh, stupid windows can't use this technique
-            os.unlink(self.statefile)
-        os.rename(tmpfile, self.statefile)
+        fileutil.move_into_place(tmpfile, self.statefile)
 
     def startService(self):
         self.load_state()