Blame SOURCES/BZ-1757613-downloadonly-do-not-reset-localpath.patch

582920
commit 3da1a101937f62b2e4836346d096d3c745bf34fd
582920
Author: Lukáš Hrázký <lhrazky@redhat.com>
582920
Date:   Tue Dec 17 15:17:08 2019 +0100
582920
582920
    Don't reset the package localpath to temporary after download (RhBug:1757613)
582920
    
582920
    The path is already changed from temporary to final earlier in the
582920
    function, as the file is renamed. The removed line seems superfluous and
582920
    out of place, the value in po.localpath should already be the correct
582920
    one.
582920
    
582920
    https://bugzilla.redhat.com/show_bug.cgi?id=1757613
582920
582920
diff --git a/yum/__init__.py b/yum/__init__.py
582920
index 56f8c8c4..9c158c81 100644
582920
--- a/yum/__init__.py
582920
+++ b/yum/__init__.py
582920
@@ -2583,7 +2583,6 @@ much more problems).
582920
                         result, errmsg = self.sigCheckPkg(po)
582920
                         if result != 0:
582920
                             self.verbose_logger.warn("%s", errmsg)
582920
-                    po.localpath = obj.filename
582920
                     if po in errors:
582920
                         del errors[po]
582920