From: James Antill Date: Sat, 18 Apr 2009 17:52:51 +0000 (-0400) Subject: Fix copy and paste error on message X-Git-Tag: upstream/0.9.9~65 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=38eb731765ec71a1f71e1c35b1888043d4160205;p=tools%2Fcreaterepo.git Fix copy and paste error on message --- diff --git a/createrepo/__init__.py b/createrepo/__init__.py index 54afb86..7566628 100644 --- a/createrepo/__init__.py +++ b/createrepo/__init__.py @@ -640,7 +640,7 @@ class MetaDataGenerator: fp = d + '/' + f if int(os.stat(fp)[stat.ST_SIZE]) > self.conf.max_delta_rpm_size: self.callback.log("Skipping %s package " \ - "that is > max_delta_rpm_size" % pkg) + "that is > max_delta_rpm_size" % f) continue if not self._old_package_dict.has_key(d): self._old_package_dict[d] = []