Mercurial > piecrust2
comparison piecrust/__init__.py @ 100:69d5eecfa449
Better `prepare` command, with templates and help topics.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sat, 13 Sep 2014 23:31:21 -0700 |
parents | cb1ed436642c |
children | d70a4adb61dd |
comparison
equal
deleted
inserted
replaced
99:8703be118430 | 100:69d5eecfa449 |
---|---|
20 try: | 20 try: |
21 from piecrust.__version__ import APP_VERSION | 21 from piecrust.__version__ import APP_VERSION |
22 except ImportError: | 22 except ImportError: |
23 APP_VERSION = 'unknown' | 23 APP_VERSION = 'unknown' |
24 | 24 |
25 import os.path | |
26 RESOURCES_DIR = os.path.join(os.path.dirname(__file__), 'resources') | |
27 |