project: for consistency, also separate alias authors with pipes.
authorW. Trevor King <wking@tremily.us>
Sat, 20 Oct 2012 01:51:39 +0000 (21:51 -0400)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Oct 2012 01:51:39 +0000 (21:51 -0400)
README
update_copyright/project.py

diff --git a/README b/README
index 2555ed07983244fccd4de1000b3cad737e9d1306..5d2e3ff28f3d7e80e56aec807894e016f9e613eb 100644 (file)
--- a/README
+++ b/README
@@ -156,7 +156,7 @@ add an `aliases`` section to your config file, where the option names
 are the canonical name of the ...?.  For example::
 
   [aliases]
-  John Doe <jdoe@a.com>: John Doe, jdoe, J. Doe <j@doe.net>
+  John Doe <jdoe@a.com>: John Doe | jdoe | J. Doe <j@doe.net>
 
 Testing
 =======
index 9b0686688feed1b3ad10fe4f2085da20167feb18..dd9b2a898af0103bf38de30ad3b2ae3a05cc587a 100644 (file)
@@ -161,7 +161,7 @@ class Project (object):
             _aliases = parser.get('aliases', author)
             author = unicode(author, encoding)
             aliases[author] = set(
-                unicode(a.strip(), encoding) for a in _aliases.split(','))
+                unicode(a.strip(), encoding) for a in _aliases.split('|'))
         self._aliases = aliases
         if self._vcs is not None:
             self._vcs._aliases = self._aliases