filemanip: don't break line before binary operator.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
This commit is contained in:
parent
819cf4f8f1
commit
0d9604b987
1 changed files with 3 additions and 2 deletions
|
|
@ -249,8 +249,9 @@ class HashHook(Hook):
|
|||
line)
|
||||
except (IOError, FileNotFoundError):
|
||||
if not self._options["forgiving"]:
|
||||
raise newfol.exception.UpgradeNeededError("dtb is missing"
|
||||
+ " checksum")
|
||||
raise newfol.exception.UpgradeNeededError("dtb is " +
|
||||
"missing " +
|
||||
"checksum")
|
||||
|
||||
def commit_close(self):
|
||||
if "w" in self._mode:
|
||||
|
|
|
|||
Loading…
Reference in a new issue