소스 검색

core: typo fix

Marek Marczykowski-Górecki 10 년 전
부모
커밋
def58ab911
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core-modules/000QubesVm.py

+ 1 - 1
core-modules/000QubesVm.py

@@ -1440,7 +1440,7 @@ class QubesVm(object):
             if os.name == 'nt':
                 # see here for the explanation (_exec doc):
                 #  http://msdn.microsoft.com/en-us/library/431x4c1w.aspx
-                args[0] = '"%"' % args[0]
+                args[0] = '"%s"' % args[0]
             os.execv(system_path["qrexec_client_path"], args)
             exit(1)