~aperezdc/webkit-releng-toolbelt

f0f8d71915ede8ae82bc80301c91c55859ede2b9 — Adrian Perez de Castro 5 years ago 6011755
config: Fix breakage due to use of renamed method

Method ConfigSet.match_file() has been renamed to ConfigSet.find(),
so fix accordingly.
1 files changed, 1 insertions(+), 1 deletions(-)

M wkrel/commands.py
M wkrel/commands.py => wkrel/commands.py +1 -1
@@ 54,7 54,7 @@ class cmd_config(Command):
        print("Configurations:", ", ".join(cset.configurations))

        if tarfile:
            conf = cset.match_file(tarfile)
            conf = cset.find(tarfile)
            print("Chosen configuration:")
            print("  - Pattern:", conf.pattern)
            print("  - Version:", conf.match(tarfile.name))