diff options
author | 2011-07-23 00:42:55 -0400 | |
---|---|---|
committer | 2011-07-23 00:42:55 -0400 | |
commit | 22ed4c7f7c15f8da7b5163dad29b96f949001789 (patch) | |
tree | deaa4da69e62c2b108d101b1ee26631dddceed89 /fabfile.py | |
parent | amend (diff) | |
download | python-github3-22ed4c7f7c15f8da7b5163dad29b96f949001789.tar.xz python-github3-22ed4c7f7c15f8da7b5163dad29b96f949001789.zip |
docs are public now
Diffstat (limited to 'fabfile.py')
-rw-r--r-- | fabfile.py | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/fabfile.py b/fabfile.py deleted file mode 100644 index 7642557..0000000 --- a/fabfile.py +++ /dev/null @@ -1,19 +0,0 @@ -# -*- coding: utf-8 -*- - -import os -from fabric.api import * - - -DOCS_URL = 'https://gist.github.com/raw/71c2878f53e886dc921a/' - - -def get_docs(): - """Removed Trashcan. - """ - os.chdir('ext') - os.system('curl -s -O {0}{1}'.format(DOCS_URL, 'general.md')) - os.system('curl -s -O {0}{1}'.format(DOCS_URL, 'issue_comments.md')) - os.system('curl -s -O {0}{1}'.format(DOCS_URL, 'issues.md')) - os.system('curl -s -O {0}{1}'.format(DOCS_URL, 'labels.md')) - os.system('curl -s -O {0}{1}'.format(DOCS_URL, 'milestones.md')) - |