hyde / hyde-old

Static website generator inspired by Jekyll
http://ringce.com/hyde
MIT License
876 stars 82 forks source link

Site is not generated under Windows #28

Open oleksandr-k12 opened 14 years ago

oleksandr-k12 commented 14 years ago

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)

navilan commented 14 years ago

Thanks for pointing it out. Will fix.