Work-around:
In the file /usr/lib/python3/dist-packages/click/chroot.py
Change the last line of the maint() method to always return 0:
def maint(self, *args): ... return 0 # ret
With this in place you'll see the errors but can successfully use click chroots.
Work-around:
In the file /usr/lib/ python3/ dist-packages/ click/chroot. py
Change the last line of the maint() method to always return 0:
def maint(self, *args):
...
return 0 # ret
With this in place you'll see the errors but can successfully use click chroots.