Skip to content

Commit

Permalink
Appease the white space gods of Black!
Browse files Browse the repository at this point in the history
Co-authored-by: Richard Si <63936253+ichard26@users.noreply.github.com>
  • Loading branch information
cooperlees and ichard26 committed May 22, 2020
1 parent afccc2f commit 0bd470c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/black_primer/lib.py
Expand Up @@ -195,7 +195,7 @@ def handle_PermissionError(
can't handle it.
"""
excvalue = exc[1]
LOG.debug(f"Handling {excvalue} from {func.__name__} ... ")
LOG.debug(f"Handling {excvalue} from {func.__name__}... ")
if func in (os.rmdir, os.unlink) and excvalue.errno == errno.EACCES:
LOG.debug(f"Setting {path} writable, readable, and executable by everyone... ")
os.chmod(path, stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO) # chmod 0777
Expand Down

0 comments on commit 0bd470c

Please sign in to comment.