fix for a bug reported by l0rda@l0rda.biz (TypeError: cannot concatenate 'str' and 'NoneType' objects)

This commit is contained in:
Miroslav Stampar 2011-04-21 14:53:02 +00:00
parent b667c50588
commit bd4fbb3251

View File

@ -294,7 +294,8 @@ class Filesystem:
else:
chunk = ""
newFileContent += chunk
if chunk:
newFileContent += chunk
fileContent = newFileContent