diff --git a/cps/converter.py b/cps/converter.py index ff4f252c..aa8bd411 100644 --- a/cps/converter.py +++ b/cps/converter.py @@ -34,7 +34,7 @@ def versionCalibre(): versions = _(u'not installed') if os.path.exists(ub.config.config_converterpath): try: - p = subprocess.Popen(ub.config.config_converterpath + ' --version', stdout=subprocess.PIPE, stderr=subprocess.PIPE) + p = subprocess.Popen([ub.config.config_converterpath, '--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) p.wait() for lines in p.stdout.readlines(): if isinstance(lines, bytes):