Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b74de19

Browse files
committed
Trivial style update
1 parent 75f447c commit b74de19

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/utils/purge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def purge(directory):
4444
for filepath in filepaths:
4545
try:
4646
filesize = os.path.getsize(filepath)
47-
with open(filepath, 'w+b') as f:
47+
with open(filepath, "w+b") as f:
4848
f.write("".join(chr(random.randint(0, 255)) for _ in xrange(filesize)))
4949
except:
5050
pass

0 commit comments

Comments
 (0)