You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
python hyde.py -g s c:\mysite
Infinite loop starts and process never ends
I fixed it changing hardcoded slashes to os.sep in url.py:
return (parent.rstrip("/") + os.sep + child.lstrip("/")).rstrip("/")
and
url = url.strip(os.sep)
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
Infinite loop starts and process never ends
I fixed it changing hardcoded slashes to os.sep in url.py:
return (parent.rstrip("/") + os.sep + child.lstrip("/")).rstrip("/")
and
url = url.strip(os.sep)
The text was updated successfully, but these errors were encountered: