From f14fe3627567919b97c3446180dee42827373cd3 Mon Sep 17 00:00:00 2001 From: amoh-godwin Date: Sun, 20 Oct 2019 20:30:49 +0000 Subject: [PATCH] Fix error while calling qmlview with phone parameter --- preview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preview.py b/preview.py index 10ce0aa..f2c1400 100644 --- a/preview.py +++ b/preview.py @@ -53,7 +53,7 @@ def _run(self, filename, view_index): def _run_in_phone_frame(self, filename, view_index): - command = 'qmlview ' + '"' + filename + '"' + '--phone' + command = 'qmlview ' + '"' + filename + '"' + ' --phone' subP = subprocess.Popen(command, stdout=subprocess.PIPE,