diff --git a/cuegui/cuegui/Utils.py b/cuegui/cuegui/Utils.py index b59789d4b..2dfeb3673 100644 --- a/cuegui/cuegui/Utils.py +++ b/cuegui/cuegui/Utils.py @@ -666,7 +666,8 @@ def launchViewerUsingPaths(paths, actionText, test_mode=False): if not test_mode: print(msg) try: - subprocess.check_call(cmd.split()) + # pylint: disable=consider-using-with + subprocess.Popen(cmd.split()) except subprocess.CalledProcessError as e: showErrorMessageBox(str(e), title='Error running Viewer command') except Exception as e: