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

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