filemanip: don't break line before binary operator.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
This commit is contained in:
brian m. carlson 2015-11-15 16:24:14 +00:00
parent 819cf4f8f1
commit 0d9604b987
No known key found for this signature in database
GPG key ID: BF535D811F52F68B

View file

@ -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: