From 61126b94160f3af5fc3cdce083b56f2ea09a5864 Mon Sep 17 00:00:00 2001 From: piair Date: Wed, 23 Feb 2022 17:11:14 +0100 Subject: [PATCH] fixed printf --- V4.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/V4.py b/V4.py index 1c59ce4..72a0fd6 100755 --- a/V4.py +++ b/V4.py @@ -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)