Mercurial > piecrust2
comparison piecrust/environment.py @ 1:aaa8fb7c8918
Re-arranged modules to reduce dependencies to builtin stuff.
Added `init` command.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 22 Dec 2013 08:00:24 -0800 |
parents | a212a3f2e3ee |
children | f485ba500df3 |
comparison
equal
deleted
inserted
replaced
0:a212a3f2e3ee | 1:aaa8fb7c8918 |
---|---|
46 def _loadPosts(self): | 46 def _loadPosts(self): |
47 raise NotImplementedError() | 47 raise NotImplementedError() |
48 | 48 |
49 | 49 |
50 class StandardEnvironment(Environment): | 50 class StandardEnvironment(Environment): |
51 pass | 51 def __init__(self): |
52 super(StandardEnvironment, self).__init__() | |
52 | 53 |