This commit is contained in:
g1879 2020-11-23 23:06:42 +08:00
parent 20bc6f5516
commit 22f28d55b4

View File

@ -53,10 +53,7 @@ def set_paths(driver_path: str = None,
om = OptionsManager(ini_path) om = OptionsManager(ini_path)
def format_path(path: str) -> str: def format_path(path: str) -> str:
if not path: return '' if not path else str(path).replace('/', '\\')
return ''
return str(path).replace('/', '\\')
if driver_path is not None: if driver_path is not None:
om.set_item('paths', 'chromedriver_path', format_path(driver_path)) om.set_item('paths', 'chromedriver_path', format_path(driver_path))