]> granicus.if.org Git - python/commitdiff
Two lines in this file had unbalanced parentheses -- couldn't possibly
authorTim Peters <tim.peters@gmail.com>
Mon, 28 Mar 2005 01:05:48 +0000 (01:05 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 28 Mar 2005 01:05:48 +0000 (01:05 +0000)
work (SyntaxErrors at compile time).

I slammed in what looked like the obvious fixes, but someone who
understands this file should check my work.

Lib/distutils/command/bdist_rpm.py

index 98621af9fd68e4a7b7c34d4851c3006738838df7..4bc00c3ac42a1d5379586a9ab30601c732198ca5 100644 (file)
@@ -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()