>From the looks of things the source is a mess, It got a -3.26/10 with
pylint and -9.29/10 with python3-pylint. While some of those are style
issues, many are functional. I think you're going to find one problem after
another. It looks like you moved it to use python3 last month. If it's
working wi
Looks like the version argument was deprecated and later removed. The
version of argparse 2.7 is using includes it with a deprecation warning and
the version for 3.4 has it removed.
On Sun, Apr 24, 2016 at 1:21 PM, Avram Lubkin wrote:
> Based on the error and looking at the source, you should j
Based on the error and looking at the source, you should just need to fix
the line in /usr/lib/python3.4/site-packages/krop/krop.py:
parser = ArgumentParser(description=__doc__, version=__version__,
with
parser = ArgumentParser(description=__doc__,
ArgumentParser does not accept a versi
Hi,
I need some help to fix a bug ¹ with python3 and site-packages.
> cd /usr/lib/python3.4/site-packages/krop/
> python2 -c 'import krop ; krop.main()'
→ dialog
> python3 -c 'import krop ; krop.main()'
Traceback (most recent call last):
File "", line 1, in
File "/usr/lib/python3.4/site-pa