Skip to content

Commit

Permalink
fixed an error introduced during merge
Browse files Browse the repository at this point in the history
  • Loading branch information
fzumstein committed Mar 4, 2016
1 parent 7e05f2e commit 52ef851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xlwings/xlwings.bas
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ Sub ExecuteWindows(IsFrozen As Boolean, PythonCommand As String, PYTHON_WIN As S
WORKBOOK_FULLNAME = ThisWorkbook.FullName

If IsFrozen = False Then
RunCommand = "python -B -c ""import sys, os; sys.path.extend(os.path.normcase(os.path.expandvars(r'" & PYTHONPATH & "').split(';')); " & PythonCommand & """ "
RunCommand = "python -B -c ""import sys, os; sys.path.extend(os.path.normcase(os.path.expandvars(r'" & PYTHONPATH & "')).split(';')); " & PythonCommand & """ "
ElseIf IsFrozen = True Then
RunCommand = PythonCommand & " "
End If
Expand Down

0 comments on commit 52ef851

Please sign in to comment.