Blame SOURCES/0001-Fix-typo-in-debugprint-call-https-github.com-zdohnal.patch

758846
From 027ed8683a0ec30dbe705fe4d8f31c8ccb973199 Mon Sep 17 00:00:00 2001
758846
From: Zdenek Dohnal <zdohnal@redhat.com>
758846
Date: Thu, 30 Aug 2018 12:05:53 +0200
758846
Subject: [PATCH] Fix typo in debugprint call
758846
 (https://github.com/zdohnal/system-config-printer/issues/105)
758846
758846
---
758846
 newprinter.py | 2 +-
758846
 1 file changed, 1 insertion(+), 1 deletion(-)
758846
758846
diff --git a/newprinter.py b/newprinter.py
758846
index 850c986b..051fc253 100644
758846
--- a/newprinter.py
758846
+++ b/newprinter.py
758846
@@ -1049,7 +1049,7 @@ class NewPrinterGUI(GtkGUI):
758846
             debugprint('No packages for driver')
758846
             return None
758846
         if len(arches) > 1:
758846
-            debugprint('Returned more than one matching architecture, please report this as a bug: %s', repr (arches))
758846
+            debugprint('Returned more than one matching architecture, please report this as a bug: %s' % repr (arches))
758846
             return None
758846
 
758846
         pkgs = pkgs[arches[0]]
758846
-- 
758846
2.17.2
758846