While trying to run
python3 easy-install.py develop --project=mydevproj
I got this error: -
Traceback (most recent call last):
File "/home/asief/easy-install/easy-install.py", line 776, in
and args.force_pull
^^^^^^^^^^^^^^^
AttributeError: 'Namespace' object has no attribute 'force_pull'
After consulting co-pilot I got this sollution to add to line 665: -
parser.add_argument(
"-l", "--force-pull", action="store_true", help="Force pull frappe_docker",
)
Can I raise a PR or is it a low priority for you right now? (probably scrambling to meet v16 stable release deadlines)