Mercurial > public > pelican-blog
comparison fabfile.py @ 11:75a003a548c4
Added a script to create a new post by answering questions.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 02 Feb 2014 13:07:15 -0600 |
parents | c4ec6945bb86 |
children |
comparison
equal
deleted
inserted
replaced
10:6c03ca07a16d | 11:75a003a548c4 |
---|---|
56 remote_dir=dest_path, | 56 remote_dir=dest_path, |
57 exclude=".DS_Store", | 57 exclude=".DS_Store", |
58 local_dir=DEPLOY_PATH.rstrip('/') + '/', | 58 local_dir=DEPLOY_PATH.rstrip('/') + '/', |
59 delete=True | 59 delete=True |
60 ) | 60 ) |
61 | |
62 def new_post(): | |
63 """Create a new post by answering questions interactively""" | |
64 local('python tools/new_post.py') | |
65 |