diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-12-27 18:37:05 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-12-27 18:37:05 +0100 |
commit | 0bc66edb6a63464c3cab2a79b3b8f96ce1c18d10 (patch) | |
tree | 599ddf27fc277fd46f411ec688de1a3191f822cd | |
parent | 6e752a8be4ab9870b9c47c0f167c2530ed898c16 (diff) |
fix my stupid error
-rw-r--r-- | test-bugzilla-files/new-control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-bugzilla-files/new-control.py b/test-bugzilla-files/new-control.py index ba90c6e..4c8e7d7 100644 --- a/test-bugzilla-files/new-control.py +++ b/test-bugzilla-files/new-control.py @@ -66,7 +66,7 @@ if __name__ == "__main__": sys.exit() asan = 0 - if opts.count() > 0 and "--asan" in opts[0]: + if count(opts) > 0 and "--asan" in opts[0]: print("yeah") asan = 1 |