]> git.ipfire.org Git - pakfire.git/commitdiff
Fix syntax error.
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 25 Mar 2012 19:29:39 +0000 (21:29 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 25 Mar 2012 19:29:39 +0000 (21:29 +0200)
python/pakfire/transaction.py

index 6046166c60b1fe1b95714fbc4a9ee4687ac07711..5270015f2b9c6085f0f8540137f74020f4d0bc07 100644 (file)
@@ -93,13 +93,13 @@ class TransactionCheck(object):
                        if len(files) == 2:
                                logger.critical(
                                        _("file %(name)s from %(pkg1)s conflicts with file from package %(pkg2)s") % \
-                                               { "name" : name, "pkg1" : pkgs[0], "pkg2" : pkgs[1] })
+                                               { "name" : name, "pkg1" : pkgs[0], "pkg2" : pkgs[1] }
                                )
 
                        elif len(files) >= 3:
                                logger.critical(
                                        _("file %(name)s from %(pkg)s conflicts with files from %(pkgs)s") % \
-                                               { "name" : name, "pkg" : pkgs[0], "pkgs" : i18n.list(pkgs[1:])})
+                                               { "name" : name, "pkg" : pkgs[0], "pkgs" : i18n.list(pkgs[1:])}
                                )
 
                for mp in self.mountpoints: