skariel / webalchemy

Modern web development with Python
MIT License
346 stars 21 forks source link

Unable to run examples: `main.html` not found #124

Closed alendit closed 10 years ago

alendit commented 10 years ago

Hi,

i installed webalchemy with pip and can't run anything. It complains, that main.html is not found.

I could solve the problem by adding following lines to setup.py:

from glob import glob

setup(
...
data_files=[
                ('webalchemy', ['webalchemy/main.html']),
                ('webalchemy/js', glob('webalchemy/js/*'))
],
...
)

Is this a bug or did I installed it wrong? Should I send a pull request?

skariel commented 10 years ago

Thanks for reporting... this is a new bug. I'll fix it later today!

skariel commented 10 years ago

fixed now... thanks for reporting!

skariel commented 10 years ago

(fixed in v0.2.4, in pip and github now)