Files
python-github3/fabfile.py
T
Kenneth Reitz 0a8ebea5cf basic fabfile
2011-04-13 17:54:17 -04:00

16 lines
253 B
Python

# -*- coding: utf-8 -*-
import os
from fabric.api import *
DOCS_URL = 'https://gist.github.com/raw/71c2878f53e886dc921a/general.md'
def get_docs():
"""Removed Trashcan.
"""
os.chdir('ext')
os.system('curl -O {0}'.format(DOCS_URL))