[jhbuild] add missing parenthesises



commit 9b3a58783464fc9ac159da14e2bf53ef1915f2b0
Author: Frédéric Péters <fpeters 0d be>
Date:   Wed Jan 7 21:41:51 2015 +0100

    add missing parenthesises
    
    https://bugzilla.gnome.org/show_bug.cgi?id=742545

 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 644877f..3b2e383 100644
--- a/jhbuild/utils/systeminstall.py
+++ b/jhbuild/utils/systeminstall.py
@@ -59,7 +59,7 @@ def get_uninstalled_pkgconfigs_and_filenames(uninstalled):
 
     for module_name, dep_type, value in uninstalled:
         if dep_type == 'pkgconfig':
-            uninstalled_pkgconfigs.append(module_name, value)
+            uninstalled_pkgconfigs.append((module_name, value))
         elif dep_type.lower() == 'path':
             uninstalled_filenames.append((module_name, os.path.join('/usr/bin', value),))
         elif dep_type.lower() == 'c_include':


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