fix -S; it should accept windows-specific filenames.

This commit is contained in:
David Rose 2012-11-16 01:43:40 +00:00
parent 3d05d84d87
commit 807aa62ade

View File

@ -171,7 +171,10 @@ for opt, arg in opts:
while len(tokens) < 4:
tokens.append('')
certificate, chain, pkey, password = tokens[:4]
signParams.append((certificate, chain, pkey, password))
signParams.append((Filename.fromOsSpecific(certificate),
Filename.fromOsSpecific(chain),
Filename.fromOsSpecific(pkey),
Filename.fromOsSpecific(password)))
elif opt == '-D':
allowPythonDev = True
elif opt == '-u':