Blame SOURCES/BZ-1389816-include-repoid-in-timestamp-error.patch

07a10e
commit 5a836edd592fc0adf2e1bb3883387e48cf77f548
07a10e
Author: Michal Domonkos <mdomonko@redhat.com>
07a10e
Date:   Mon Jan 2 12:40:46 2017 +0100
07a10e
07a10e
    Include repo-id in repomd.xml timestamp error. BZ 1389816
07a10e
07a10e
diff --git a/yum/yumRepo.py b/yum/yumRepo.py
07a10e
index c6bed82..419545d 100644
07a10e
--- a/yum/yumRepo.py
07a10e
+++ b/yum/yumRepo.py
07a10e
@@ -1378,10 +1378,11 @@ Insufficient space in download directory %s
07a10e
 
07a10e
         if (self.timestamp_check and
07a10e
             old_repo_XML.timestamp > self.repoXML.timestamp):
07a10e
-            logger.warning("Not using downloaded repomd.xml because it is "
07a10e
+            logger.warning("Not using downloaded %s/repomd.xml because it is "
07a10e
                            "older than what we have:\n"
07a10e
                            "  Current   : %s\n  Downloaded: %s" %
07a10e
-                           (time.ctime(old_repo_XML.timestamp),
07a10e
+                           (self.id,
07a10e
+                            time.ctime(old_repo_XML.timestamp),
07a10e
                             time.ctime(self.repoXML.timestamp)))
07a10e
             return False
07a10e
         return True