summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--presto-utils/ChangeLog3
-rw-r--r--presto-utils/packagelist.py2
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()