Trivial style update

This commit is contained in:
Miroslav Stampar 2014-04-07 20:06:03 +02:00
parent 75f447ccf8
commit b74de19213

View File

@ -44,7 +44,7 @@ def purge(directory):
for filepath in filepaths:
try:
filesize = os.path.getsize(filepath)
with open(filepath, 'w+b') as f:
with open(filepath, "w+b") as f:
f.write("".join(chr(random.randint(0, 255)) for _ in xrange(filesize)))
except:
pass