fixed printf

This commit is contained in:
piair 2022-02-23 17:11:14 +01:00
parent bdcdb400d3
commit 61126b9416
1 changed files with 2 additions and 2 deletions

4
V4.py
View File

@ -92,9 +92,9 @@ def FirefoxPC(Headless = Headless):
return(webdriver.Firefox(options=options))
def printf(txt):
def printf(txt, end=""):
if Log :
print(txt)
print(txt, end=end)
CustomSleep(5)