From: Raymond Hettinger Date: Sun, 10 Jun 2012 00:27:23 +0000 (-0700) Subject: Minor formatting fix=up X-Git-Tag: v2.7.4rc1~764 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0c2c692b8481efc0c4b35b9b422dafb5993c3b60;p=thirdparty%2FPython%2Fcpython.git Minor formatting fix=up --- diff --git a/Lib/collections.py b/Lib/collections.py index 3471c89fb447..ba6d7caf6288 100644 --- a/Lib/collections.py +++ b/Lib/collections.py @@ -337,7 +337,7 @@ def namedtuple(typename, field_names, verbose=False, rename=False): seen = set() for name in field_names: if name.startswith('_') and not rename: - raise ValueError('Field names cannot start with an underscore:' + raise ValueError('Field names cannot start with an underscore: ' '%r' % name) if name in seen: raise ValueError('Encountered duplicate field name: %r' % name)