One more bug.

This commit is contained in:
Robert J. Hansen
2016-04-27 16:27:03 -04:00
parent d214d1a026
commit 67aabd46fb

View File

@@ -44,7 +44,7 @@ def process_rds(filename):
try:
my_mkdir("${PKGDATADIR}")
with open_fh(filename) as fh:
with open(pjoin("@pkgdatadir@", "hashes.txt"), "w") as out:
with open(pjoin("${PKGDATADIR}", "hashes.txt"), "w") as out:
md5re = re_compile(r'^"?([A-F0-9]{32})"?$')
line = unicodify(fh.readline())
while line: