[jhbuild] rdepends: fix call to get_full_module_list after recent changes
- From: Frederic Peters <fpeters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [jhbuild] rdepends: fix call to get_full_module_list after recent changes
- Date: Fri, 18 May 2012 08:27:56 +0000 (UTC)
commit dc6910884fbab97100793833082cec175a29437b
Author: FrÃdÃric PÃters <fpeters 0d be>
Date: Fri May 18 10:27:23 2012 +0200
rdepends: fix call to get_full_module_list after recent changes
jhbuild/commands/rdepends.py | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/jhbuild/commands/rdepends.py b/jhbuild/commands/rdepends.py
index 760bf66..0fe7626 100644
--- a/jhbuild/commands/rdepends.py
+++ b/jhbuild/commands/rdepends.py
@@ -54,8 +54,7 @@ class cmd_rdepends(Command):
# get all modules but those that are a dependency of modname
dependencies_list = [x.name for x in module_set.get_module_list([modname])]
dependencies_list.remove(modname)
- modules = module_set.get_full_module_list(skip = dependencies_list,
- ignore_cycles = True)
+ modules = module_set.get_full_module_list(skip=dependencies_list)
modules = modules[[x.name for x in modules].index(modname)+1:]
# iterate over remaining modules, and print those with modname as dep;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]