[jhbuild] systeminstall: variable name fix



commit 71f256610e6e440fd6ff98052357587145ade08e
Author: Frédéric Péters <fpeters 0d be>
Date:   Thu Jan 8 09:04:22 2015 +0100

    systeminstall: variable name fix

 jhbuild/utils/systeminstall.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/jhbuild/utils/systeminstall.py b/jhbuild/utils/systeminstall.py
index 3b2e383..3651326 100644
--- a/jhbuild/utils/systeminstall.py
+++ b/jhbuild/utils/systeminstall.py
@@ -61,9 +61,9 @@ def get_uninstalled_pkgconfigs_and_filenames(uninstalled):
         if dep_type == 'pkgconfig':
             uninstalled_pkgconfigs.append((module_name, value))
         elif dep_type.lower() == 'path':
-            uninstalled_filenames.append((module_name, os.path.join('/usr/bin', value),))
+            uninstalled_filenames.append((module_name, os.path.join('/usr/bin', value)))
         elif dep_type.lower() == 'c_include':
-            uninstalled_filenames.append((module.name, os.path.join('/usr/include', value),))
+            uninstalled_filenames.append((module_name, os.path.join('/usr/include', value)))
 
     return uninstalled_pkgconfigs, uninstalled_filenames
 


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