Re: [PATCH 2/7] Fix sy -> sys in pwclient error path

2018-01-26 Thread Stephen Finucane
On Thu, 2018-01-25 at 13:43 +1100, Daniel Axtens wrote: > While running docker-compose run web --quick-tox, I got this > flake8/pep8 error for pwclient: > > patchwork/bin/pwclient:713:9: F821 undefined name 'sy' > > Fix by converting to 'sys' instead, which was intended. > > Fixes: 58160097f957

[PATCH 2/7] Fix sy -> sys in pwclient error path

2018-01-24 Thread Daniel Axtens
While running docker-compose run web --quick-tox, I got this flake8/pep8 error for pwclient: patchwork/bin/pwclient:713:9: F821 undefined name 'sy' Fix by converting to 'sys' instead, which was intended. Fixes: 58160097f957 ("pwclient: Resolve pycode warnings") Signed-off-by: Daniel Axtens --