$ fab -f a.py doit
THE THING
Done.
Last active
August 29, 2015 14:14
-
-
Save mgedmin/8430ef3bcac58991a109 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from fabric.api import task | |
| from b import dothething | |
| @task | |
| def doit(): | |
| dothething() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def dothething(): | |
| print("THE THING") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I didn't get a chance to thank you for putting my mind at ease -- I was doing the right thing, just in the wrong way - Thanks for the time you took to 'teach' me :)