# HG changeset patch # User Ludovic Chabant # Date 1500823323 25200 # Node ID 1d5f02778723da3917c83f5c4133b451ebd08b8b # Parent bf65a1a6992a26146b7626cde36b2ed5a2947485 internal: PEP8 diff -r bf65a1a6992a -r 1d5f02778723 piecrust/data/base.py --- a/piecrust/data/base.py Sun Jul 23 08:21:07 2017 -0700 +++ b/piecrust/data/base.py Sun Jul 23 08:22:03 2017 -0700 @@ -40,10 +40,10 @@ for val in values: if not isinstance(val, (dict, collections.abc.Mapping)): raise Exception( - "Template data for '%s' contains an incompatible mix " - "of data: %s" % ( - self._subp(name), - ', '.join([str(type(v)) for v in values]))) + "Template data for '%s' contains an incompatible mix " + "of data: %s" % ( + self._subp(name), + ', '.join([str(type(v)) for v in values]))) return MergedMapping(values, self._subp(name))