ERROR at start woeusbgui #139
ArchangelusMagnus
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I received this error at start woeusbgui:
O que houve:
kali :: ~/Packages/WoeUSB-ng ‹master*› » woeusbgui
/home/arch_magnus/Packages/WoeUSB-ng/WoeUSB/workaround.py:55: SyntaxWarning: invalid escape sequence '.'
grep = subprocess.run(["grep", "--extended-regexp", "--quiet", "^MinServer=7[0-9]{3}.[0-9]",
Policy was updated, please run this program again
I fix the passage:
"^MinServer=7[0-9]{3}.[0-9]"
to
r"^MinServer=7[0-9]{3}.[0-9]"
It's a raw string. You can fix the file in main source. The file path is: WoeUSB-ng/WoeUSB/workaround.py:55
Beta Was this translation helpful? Give feedback.
All reactions