summaryrefslogtreecommitdiff
path: root/morphlib/builder2.py
diff options
context:
space:
mode:
authorRichard Holland <richard.holland@codethink.co.uk>2013-04-08 11:46:04 +0000
committerRichard Holland <richard.holland@codethink.co.uk>2013-04-08 14:46:57 +0000
commit7c5487a695ab8353e9e98116a7165722cdd9f61e (patch)
tree2a7668291a6d60ff539bc63b58ed0108273add5b /morphlib/builder2.py
parent2bcce901633013484c22936ed4477d9a908a4cbb (diff)
downloadmorph-7c5487a695ab8353e9e98116a7165722cdd9f61e.tar.gz
Corrections to previous commits
Removed trailing comma, corrected copyright year, used #pragma: no cover to exclude the exception class form coverage and allow ./check full to run.
Diffstat (limited to 'morphlib/builder2.py')
-rw-r--r--morphlib/builder2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/builder2.py b/morphlib/builder2.py
index 9382efe9..7ded281e 100644
--- a/morphlib/builder2.py
+++ b/morphlib/builder2.py
@@ -857,6 +857,6 @@ class DiskImageBuilder(SystemKindBuilder): # pragma: no cover
class EmptyStratumError(cliapp.AppException):
- def __init__(self, stratum_name):
+ def __init__(self, stratum_name): # pragma: no cover
cliapp.AppException.__init__(self,
"Stratum %s is empty (has no dependencies)" % stratum_name)