fix: handle opensfm project path with spaces

fixes #1006


Former-commit-id: 69fc73ce44
pull/1161/head
mordka 2019-07-08 14:19:35 +02:00
rodzic 7e215d6842
commit a93a59025a
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -17,7 +17,7 @@ class OSFMContext:
self.opensfm_project_path = opensfm_project_path
def run(self, command):
system.run('%s/bin/opensfm %s %s' %
system.run('%s/bin/opensfm %s "%s"' %
(context.opensfm_path, command, self.opensfm_project_path))
def export_bundler(self, destination_bundle_file, rerun=False):