Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sjhbuild/depscheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'sjhbuild/depscheck.py')
-rw-r--r--sjhbuild/depscheck.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sjhbuild/depscheck.py b/sjhbuild/depscheck.py
index 7a22632..838e524 100644
--- a/sjhbuild/depscheck.py
+++ b/sjhbuild/depscheck.py
@@ -22,7 +22,7 @@ class cmd_depscheck(Command):
def run(self, config, options, args):
deps = sysdeps.get_packages()
missing_deps = []
- for package, source in deps:
+ for package, source_ in deps:
if not sysdeps.check_package(package):
missing_deps.append(package)
@@ -32,4 +32,5 @@ class cmd_depscheck(Command):
print ' '.join(missing_deps)
sys.exit(1)
+
register_command(cmd_depscheck)