removed the call to remove()
[invirt/packages/invirt-base.git] / files / usr / share / python-support / sipb-xen-base / invirt / common.py
index b193ecc..5f669ba 100644 (file)
@@ -1,6 +1,5 @@
 import unittest
 from fcntl import flock, LOCK_EX, LOCK_UN
-from os import remove
 
 class struct(object):
     'A simple namespace object.'
@@ -57,7 +56,6 @@ def with_lock_file(path):
             flock(f, LOCK_EX)
             try: return func()
             finally: flock(f, LOCK_UN)
-        remove(path)
         return g
     return wrapper