geopython / pywps

PyWPS is an implementation of the Web Processing Service standard from the Open Geospatial Consortium. PyWPS is written in Python.
https://pywps.org
MIT License
175 stars 117 forks source link

Typo in layout.html prevents building HTML docs #14

Closed justb4 closed 11 years ago

justb4 commented 11 years ago

Tried building the HTML docs with "make html", but got errors. Changing line 20 of https://github.com/geopython/PyWPS/blob/master/doc/source/_templates/layout.html from

<li><a href="{{ parent.link|e }}" {% ifloop.last %}{{ accesskey("U") }}{% endif %}>{{

to

<li><a href="{{ parent.link|e }}" {% if loop.last %}{{ accesskey("U") }}{% endif %}>{{

(note "ifloop") fixes this and the docs build. Could make a pull but this is really minor.

tomkralidis commented 11 years ago

Fixed in 1fd6dc6bdd88a2bf26ce2e546226cfa04d4bdd50. Thanks for reporting!