Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tstenner committed Feb 12, 2017
1 parent fc4ac0a commit d0be80a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bleachbit/FileUtilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ def wipe_write():
with open(path, 'wb') as f:
truncate_f(f)
except IOError as e2:
if errno.EACCESS == e.errno:
if errno.EACCES == e2.errno:
# Common when the file is locked
# Errno 13 Permission Denied
pass
Expand Down

0 comments on commit d0be80a

Please sign in to comment.