project|(vcs:utils): convert unicode() -> str().
authorW. Trevor King <wking@tremily.us>
Thu, 25 Oct 2012 21:21:20 +0000 (17:21 -0400)
committerW. Trevor King <wking@tremily.us>
Thu, 25 Oct 2012 21:21:20 +0000 (17:21 -0400)
update_copyright/project.py
update_copyright/vcs/utils.py

index c7814a89b64f931a2ac68cff25532ae0cc6056f4..63b9cfd52c2cd471de0fa655450becf40991f89f 100644 (file)
@@ -139,7 +139,7 @@ class Project (object):
         for path in parser.options('author-hacks'):
             authors = parser.get('author-hacks', path)
             author_hacks[tuple(path.split('/'))] = set(
-                unicode(a.strip(), encoding) for a in authors.split('|'))
+                str(a.strip(), encoding) for a in authors.split('|'))
         self._author_hacks = author_hacks
         if self._vcs is not None:
             self._vcs._author_hacks = self._author_hacks
@@ -159,9 +159,9 @@ class Project (object):
         aliases = {}
         for author in parser.options('aliases'):
             _aliases = parser.get('aliases', author)
-            author = unicode(author, encoding)
+            author = str(author, encoding)
             aliases[author] = set(
-                unicode(a.strip(), encoding) for a in _aliases.split('|'))
+                str(a.strip(), encoding) for a in _aliases.split('|'))
         self._aliases = aliases
         if self._vcs is not None:
             self._vcs._aliases = self._aliases
index b1537c69d2fedf08dc25f2ced6bc8392b6e43cd2..9d3c1d4a17783bbfd2397576b2dcc2e306fc95d0 100644 (file)
@@ -59,9 +59,9 @@ def invoke(args, stdin=None, stdout=_subprocess.PIPE, stderr=_subprocess.PIPE,
         if encoding is None:
             encoding = _ENCODING
         if stdout is not None:
-            stdout = unicode(stdout, encoding)
+            stdout = str(stdout, encoding)
         if stderr is not None:
-            stderr = unicode(stderr, encoding)
+            stderr = str(stderr, encoding)
     if status not in expect:
         raise ValueError([args, status, stdout, stderr])
     return status, stdout, stderr