Commit 0923ea57 authored by Jason R. Coombs's avatar Jason R. Coombs

Prefer locals to vars

parent 156bf219
......@@ -226,7 +226,7 @@ def download_file_powershell(url, target):
"[System.Net.WebRequest]::DefaultWebProxy.Credentials = "
"[System.Net.CredentialCache]::DefaultCredentials; "
'(new-object System.Net.WebClient).DownloadFile("%(url)s", "%(target)s")'
% vars()
% locals()
)
cmd = [
'powershell',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment