diff options
author | 2011-04-13 19:43:13 -0400 | |
---|---|---|
committer | 2011-04-13 19:43:17 -0400 | |
commit | a71fc4816b821dd7695bf609b6bb424091a2bf40 (patch) | |
tree | 8407e203acbd4be1e4a43c49cc05b44907e54300 /fabfile.py | |
parent | fab update (diff) | |
download | python-github3-a71fc4816b821dd7695bf609b6bb424091a2bf40.tar.xz python-github3-a71fc4816b821dd7695bf609b6bb424091a2bf40.zip |
docs
Diffstat (limited to 'fabfile.py')
-rw-r--r-- | fabfile.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -11,9 +11,9 @@ def get_docs(): """Removed Trashcan. """ os.chdir('ext') - os.system('curl -O {0}{1}'.format(DOCS_URL, 'general.md')) - os.system('curl -O {0}{1}'.format(DOCS_URL, 'issue_comments.md')) - os.system('curl -O {0}{1}'.format(DOCS_URL, 'issues.md')) - os.system('curl -O {0}{1}'.format(DOCS_URL, 'labels.md')) - os.system('curl -O {0}{1}'.format(DOCS_URL, 'milestones.md')) + 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')) |