Default to amd64 on Windows

This commit is contained in:
Paul Betts 2016-05-20 14:20:48 -07:00
parent 8821cae34f
commit 0e63050916

View file

@ -38,10 +38,7 @@ def get_target_arch():
if e.errno != errno.ENOENT:
raise
if PLATFORM == 'win32':
return 'ia32'
else:
return 'x64'
return 'x64'
def get_chromedriver_version():