Commit eacbdb3b by Chris Jerdonek

Moved commands.py into a commands sub-package.

parent b56f03c4
......@@ -8,7 +8,7 @@ Unit tests of commands.py.
import sys
import unittest
from pystache.commands import main
from pystache.commands.render import main
ORIGINAL_STDOUT = sys.stdout
......
......@@ -194,7 +194,7 @@ def main(sys_argv):
},
test_suite='pystache.tests',
entry_points = {
'console_scripts': ['pystache=pystache.commands:main'],
'console_scripts': ['pystache=pystache.commands.render:main'],
},
classifiers = CLASSIFIERS,
**extra
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment