easyargs icon indicating copy to clipboard operation
easyargs copied to clipboard

subcommands don't work in python3.6

Open chrisamow opened this issue 8 years ago • 1 comments

The git_clone example - with the needed print() change (ok, maybe giveaway that it wasn't designed for python3 :) but the other options stuff does work!)

'git_clone.py -h' does not print anything

'git_clone.py commit' does not get to the commit method()

chrisamow avatar Feb 23 '17 05:02 chrisamow

The example in README.rst is not a complete one.

All you need is to add the following code at the bottom of sample code:

if __name__ == '__main__':
    GitClone()

or you can refer to the example code in examples folder.

I've tested in Python 3.6.1 without problem :)

reverbc avatar Apr 13 '17 03:04 reverbc