Skip to content

Commit

Permalink
Fix a dumb setup.py error that caused an empty dist.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukesneeringer committed Sep 11, 2013
1 parent 010276b commit 5ae4102
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0
2.0.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def run_tests(self):

# How to do the install...
install_requires=open(pip_requirements, 'r').read().strip().split('\n'),
packages=[i for i in find_packages() if i.startswith('django_pg')],
packages=[i for i in find_packages() if i.startswith('django_jinja')],
provides=['django_jinja'],

# Running tests
Expand Down

0 comments on commit 5ae4102

Please sign in to comment.