CC-2612 : Upgrade: Push DB metadata into the file before upgrade

This commit is contained in:
Naomi Aro 2011-08-01 15:33:00 +02:00
parent 86fa10df3a
commit 7132b0be09

View file

@ -53,6 +53,11 @@ pairs = []
f = open('storDump.txt','r')
for line in f.readlines():
db_md = line.split("SF_BACKUP_1.9.0")
#remove newlines.
for item in db_md:
item = item.strip()
logger.debug(db_md)
file_md = {}
old_filepath = db_md[1]