diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-02-23 02:10:56 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-02-23 02:10:56 +0000 |
commit | d584d8c06842cec99bff1e07b565ee0511cfade8 (patch) | |
tree | b1563526d705c6d52a061de93fe4c738effcceb2 /pactest/pactest.py | |
parent | c799433e423d5bdd6737b81483de82b9e98aed46 (diff) | |
download | pacman-d584d8c06842cec99bff1e07b565ee0511cfade8.tar.xz |
* Modified the handling and output w.r.t. IgnorePkg entries. -Sy always ignores
these packages, but -S explicitly asks for confirmation.
Diffstat (limited to 'pactest/pactest.py')
-rwxr-xr-x | pactest/pactest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pactest/pactest.py b/pactest/pactest.py index 27b0e30b..c7ce619a 100755 --- a/pactest/pactest.py +++ b/pactest/pactest.py @@ -34,6 +34,7 @@ def resolveBinPath(option, opt_str, value, parser): def globTests(option, opt_str, value, parser): globlist = [] globlist.extend(glob.glob(value)) + print "globlist=%s" % globlist setattr(parser.values, option.dest, globlist) def createOptParser(): |