From 0f1cb39c1c3a19d6b5391ff926e6e6ceb3512b6d Mon Sep 17 00:00:00 2001 From: Jochen Meyer <Jochen.Meyer@cern.ch> Date: Sat, 2 Jun 2018 12:05:28 +0200 Subject: [PATCH] fixing Warning for acmd.py filter_files To extract single evts or a list of evts from whatever file the command 'acmd.py filter_files' is one of the recommended ways. However, this command issues the following warning since a long time: WARNING Please stop using AtlCopyBSEvent.exe, and use AtlCopyBSEvent instead This MR fixes that warning. Former-commit-id: 16925630cbb94ee57dd7c659da866a05435af489 --- Tools/PyUtils/python/scripts/filter_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/PyUtils/python/scripts/filter_files.py b/Tools/PyUtils/python/scripts/filter_files.py index a295b87f0f4..f2409d15fa5 100644 --- a/Tools/PyUtils/python/scripts/filter_files.py +++ b/Tools/PyUtils/python/scripts/filter_files.py @@ -111,7 +111,7 @@ def main(args): # optimization: run directly 'AtlCopyBSEvent.exe import subprocess cmd = ' '.join([ - 'AtlCopyBSEvent.exe', + 'AtlCopyBSEvent', '-e %(evt-list)s', '%(run-list)s', '--out %(output)s', -- GitLab