commit | 0c2c692b8481efc0c4b35b9b422dafb5993c3b60 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Jun 09 17:27:23 2012 -0700 |
committer | Raymond Hettinger <python@rcn.com> | Sat Jun 09 17:27:23 2012 -0700 |
tree | 17eab937231f51146c61c6ba19cba6357f0d6c19 | |
parent | 3395fda9284a5917e1e9603b43ed353d9c874802 [diff] |
Minor formatting fix=up
diff --git a/Lib/collections.py b/Lib/collections.py index 3471c89..ba6d7ca 100644 --- a/Lib/collections.py +++ b/Lib/collections.py
@@ -337,7 +337,7 @@ 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)