Reputation: 1107
Say I want an extension that I can execute as follows: hg sayhi
I tried the following, but it tells me there are invalid arguments:
def sayhi(ui, repo, node, **opts):
"""Says Hello"""
ui.write("hi")
cmdtable = {
"sayhi": (sayhi, [], '')
}
It seems no matter what I do, I need to give it an option like hg sayhi s
.
Is there anyway to do this?
Upvotes: 5
Views: 261
Reputation: 1107
Ok, got a fix. I removed the node parameter from the method signature and it works.
Upvotes: 5