summaryrefslogtreecommitdiff
path: root/morphlib/builder2.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-24 13:38:32 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-24 13:38:32 +0000
commitf985052b15ea636566bf3d32fd1b88ed74b2390c (patch)
treed5a06658e52f213c34d80be6744c475ddd28d468 /morphlib/builder2.py
parent238b1a44bda17ce49f424c4d874e0dd74c29c5c8 (diff)
downloadmorph-f985052b15ea636566bf3d32fd1b88ed74b2390c.tar.gz
builder2: fix line width
Diffstat (limited to 'morphlib/builder2.py')
-rw-r--r--morphlib/builder2.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/builder2.py b/morphlib/builder2.py
index 9a79dea4..b634236b 100644
--- a/morphlib/builder2.py
+++ b/morphlib/builder2.py
@@ -237,7 +237,8 @@ class ChunkBuilder(BuilderBase):
files = os.listdir(destdir)
if files:
- raise Exception('DESTDIR %s is not empty: %s' % (destdir, files))
+ raise Exception('DESTDIR %s is not empty: %s' %
+ (destdir, files))
class StratumBuilder(BuilderBase):