Skip to content

Instantly share code, notes, and snippets.

@aroberts
Created February 28, 2014 19:23
Show Gist options
  • Save aroberts/9277871 to your computer and use it in GitHub Desktop.
Save aroberts/9277871 to your computer and use it in GitHub Desktop.
Underscored positional argument bug in invoke 0.7
$ inv working
'working' did not receive all required positional arguments!
$ inv nonworking
should error
$
import invoke
@invoke.task
def working(arg):
print "should error"
@invoke.task
def nonworking(bad_arg):
print "should error"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment