summaryrefslogtreecommitdiff
path: root/cpp/demo/Freeze/backup/expect.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2010-01-05 15:03:03 +0100
committerBenoit Foucher <benoit@zeroc.com>2010-01-05 15:03:03 +0100
commit2eb6a2e5c43a04bc8ea3c72dd3aadc82fa9e430c (patch)
treeb179b72766a60db1a2fcb362089726793b5d9655 /cpp/demo/Freeze/backup/expect.py
parentBug 4538 - update instructions for building berkeley on windows (diff)
downloadice-2eb6a2e5c43a04bc8ea3c72dd3aadc82fa9e430c.tar.bz2
ice-2eb6a2e5c43a04bc8ea3c72dd3aadc82fa9e430c.tar.xz
ice-2eb6a2e5c43a04bc8ea3c72dd3aadc82fa9e430c.zip
Fix for bug 4538 -- Freeze file lock is now stored in __Freeze subdirectory
Diffstat (limited to 'cpp/demo/Freeze/backup/expect.py')
-rwxr-xr-xcpp/demo/Freeze/backup/expect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/Freeze/backup/expect.py b/cpp/demo/Freeze/backup/expect.py
index a9fb31abb59..1b623047051 100755
--- a/cpp/demo/Freeze/backup/expect.py
+++ b/cpp/demo/Freeze/backup/expect.py
@@ -27,7 +27,7 @@ def cleandb():
shutil.rmtree("db.save", True)
Util.cleanDbDir("db/data")
Util.cleanDbDir("db/logs")
- for filename in [ os.path.join("db", f) for f in os.listdir("db") if f.startswith("__") ]:
+ for filename in [ os.path.join("db", f) for f in os.listdir("db") if f.startswith("__db") ]:
os.remove(filename)
print "cleaning databases...",