Skip to content

Commit

Permalink
Fixing PyPI case-sensitive project name.
Browse files Browse the repository at this point in the history
This fix closes #18.
  • Loading branch information
perone committed May 26, 2012
1 parent 8e51b81 commit 470f2ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stallion/templates/main.html
Expand Up @@ -152,7 +152,7 @@ <h3>Packages</h3>
<li>
<a href="{{ url_for('distribution', dist_name=dist_item.key) }}">
<img id="img_{{ dist_item.key|lower|replace('.','-') }}" src="{{ img_src }}"
class="midicon" pname="{{ dist_item.key|lower }}" />
class="midicon" pname="{{ dist_item.project_name }}"/>

{% if dist and dist.key == dist_item.key %}
{{ dist_item.project_name }} {{ dist_item.version }} <img src="{{ url_for('static', filename='left-arrow.png') }}" class="midicon" />
Expand Down Expand Up @@ -205,4 +205,4 @@ <h2>{% block section_title %}{% endblock %}</h2>


</body>
</html>
</html>

0 comments on commit 470f2ee

Please sign in to comment.