diff options
author | Tim Peters <tim.peters@gmail.com> | 2005-03-28 01:05:48 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2005-03-28 01:05:48 (GMT) |
commit | 700f36c7520bffef73d86088fa80b7a1c62c416a (patch) | |
tree | cce9ce9fc4a15dcea7f2dda48c52b81ef62f3ec7 /Lib/distutils | |
parent | 1b2e0d9da0bf8dec1766e76839cf53b9557def3c (diff) | |
download | cpython-700f36c7520bffef73d86088fa80b7a1c62c416a.zip cpython-700f36c7520bffef73d86088fa80b7a1c62c416a.tar.gz cpython-700f36c7520bffef73d86088fa80b7a1c62c416a.tar.bz2 |
Two lines in this file had unbalanced parentheses -- couldn't possibly
work (SyntaxErrors at compile time).
I slammed in what looked like the obvious fixes, but someone who
understands this file should check my work.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/bdist_rpm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py index 98621af..4bc00c3 100644 --- a/Lib/distutils/command/bdist_rpm.py +++ b/Lib/distutils/command/bdist_rpm.py @@ -361,12 +361,12 @@ class bdist_rpm (Command): assert len(rpms) == 1, \ "unexpected number of RPM files found: %s" % rpms dist_file = ('bdist_rpm', get_python_version(), - self._dist_path(rpms[0]) + self._dist_path(rpms[0])) self.distribution.dist_files.append(dist_file) self.move_file(rpms[0], self.dist_dir) if debuginfo: dist_file = ('bdist_rpm', get_python_version(), - self._dist_path(debuginfo[0]) + self._dist_path(debuginfo[0])) self.move_file(debuginfo[0], self.dist_dir) # run() |