Steps to reproduce:
1) python hyde.py -i -s c:\mysite
2) 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)
Steps to reproduce: 1) python hyde.py -i -s c:\mysite 2) 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)