From 14cada77e0955ace59d60eb70e016f6c831a8dcd Mon Sep 17 00:00:00 2001 From: Mathieu Comandon Date: Sun, 30 Oct 2016 12:25:24 -0700 Subject: [PATCH] Remove quotes from 7zip destination --- lutris/util/extract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lutris/util/extract.py b/lutris/util/extract.py index c4736f993..3e472dc8c 100644 --- a/lutris/util/extract.py +++ b/lutris/util/extract.py @@ -115,7 +115,7 @@ def extract_7zip(path, dest, archive_type=None): _7zip_path = system.find_executable('7z') if not system.path_exists(_7zip_path): raise OSError("7zip is not found in the lutris runtime or on the system") - command = [_7zip_path, 'x', path, '-o"{}"'.format(dest), '-aoa'] + command = [_7zip_path, 'x', path, '-o{}'.format(dest), '-aoa'] if archive_type: command.append('-t{}'.format(archive_type)) subprocess.call(command)