diff options
| author | root <root@jndwidescreen.lesbg.loc> | 2007-08-14 02:20:17 +0300 |
|---|---|---|
| committer | root <root@jndwidescreen.lesbg.loc> | 2007-08-14 02:20:17 +0300 |
| commit | b598b894ea637e40948a1b162eeb05191d77bf2f (patch) | |
| tree | 43cad048b7851a578fdb9228b66febbfafc62a24 | |
| parent | 8de0f7ec066888c5f8c0cf8a79635bccea8b59c1 (diff) | |
| download | presto-b598b894ea637e40948a1b162eeb05191d77bf2f.tar.gz presto-b598b894ea637e40948a1b162eeb05191d77bf2f.tar.xz presto-b598b894ea637e40948a1b162eeb05191d77bf2f.zip | |
Fix small bug that didn't allow certain deltarpms to be generated
Signed-off-by: Jonathan Dieter <jdieter@gmail.com>
| -rw-r--r-- | presto-utils/ChangeLog | 3 | ||||
| -rw-r--r-- | presto-utils/packagelist.py | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/presto-utils/ChangeLog b/presto-utils/ChangeLog index 0b51c78..a9cd416 100644 --- a/presto-utils/ChangeLog +++ b/presto-utils/ChangeLog @@ -1,3 +1,6 @@ +* Tue Aug 14 2007 Jonathan Dieter <jdieter@gmail.com> - 0.3.2 + - Fix small bug that didn't allow certain deltarpms to be generated + * Wed Jul 11 2007 Jonathan Dieter <jdieter@gmail.com> - 0.3.1 - Fix typo that generates wrong xml diff --git a/presto-utils/packagelist.py b/presto-utils/packagelist.py index e9019f9..46d0012 100644 --- a/presto-utils/packagelist.py +++ b/presto-utils/packagelist.py @@ -371,7 +371,7 @@ class PackageList: if build[0] == newpkg.getNevra(): start = True - if DoFirst == 1 and start and do_last: + if start and do_last: self.__makeDeltaRpm(build_list[-1][0], newpkg, package) if not self.sorted: self.sort() |
