# HG changeset patch # User David Anderson # Date 1236912995 0 # Node ID 12de6d73a908d3ce83d3d4e66368b3b3a55d29db # Parent a610a2df83d2ad6196755df3b9ffbfd001b18eac Followup to r2496. Fix obvious errors. diff -r a610a2df83d2 -r 12de6d73a908 scripts/release/release.py --- a/scripts/release/release.py Fri Mar 13 02:13:21 2009 +0000 +++ b/scripts/release/release.py Fri Mar 13 02:56:35 2009 +0000 @@ -271,7 +271,7 @@ """ def __init__(self, wc_dir): - Paths.__init__(self, wc_dir) + util.Paths.__init__(self, wc_dir) def _unknownAndMissing(self, path): """Returns lists of unknown and missing files in the working copy. @@ -569,7 +569,7 @@ release_repos: The URL to the Google release repository root. upstream_repos: The URL to the Melange upstream repository root. """ - Paths.__init__(self, root) + util.Paths.__init__(self, root) self.wc = Subversion(self.path('google-soc')) self.release_repos = release_repos.strip('/') self.upstream_repos = upstream_repos.strip('/') diff -r a610a2df83d2 -r 12de6d73a908 scripts/release/util.py --- a/scripts/release/util.py Fri Mar 13 02:13:21 2009 +0000 +++ b/scripts/release/util.py Fri Mar 13 02:56:35 2009 +0000 @@ -33,7 +33,7 @@ _ANSI_ESCAPE = '\x1b[%dm' -# Some intrnal non-color settings that we use. +# Some internal non-color settings that we use. _RESET = 0 # Reset to terminal defaults. _BOLD = 1 # Brighter colors.