[jhbuild] systeminstall: fix prototype of 'install' method



commit 0db862a7868f010b9b28aa49ebc691c7e92c33f0
Author: Ryan Lortie <desrt desrt ca>
Date:   Sun Dec 14 19:10:45 2014 -0500

    systeminstall: fix prototype of 'install' method
    
    Fix the prototype of the 'install' method on the base class of
    SystemInstall.  This is a pretty theoretical problem because this
    function will throw a NotImplementedError if it is ever called anyway.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=741537

 jhbuild/utils/systeminstall.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/jhbuild/utils/systeminstall.py b/jhbuild/utils/systeminstall.py
index a526e6a..b54fc7d 100644
--- a/jhbuild/utils/systeminstall.py
+++ b/jhbuild/utils/systeminstall.py
@@ -141,7 +141,7 @@ class SystemInstall(object):
         else:
             raise SystemExit, _('No suitable root privilege command found; you should install "pkexec"')
 
-    def install(self, pkgconfig_ids):
+    def install(self, uninstalled_pkgconfigs, uninstalled_filenames):
         """Takes a list of pkg-config identifiers and uses a system-specific method to install them."""
         raise NotImplementedError()
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]