You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don't feel like making a pull requesrt for a single line of code.
In scripts/internal/pocolm_common.py:55, CalledProcessError is used without being properly imported. This error occurs only if subprocess.check_output fails.
Solution:
either change that to read subprocess.CalledProcessError or add from subprocess import CalledProcessError at the beginning of the file.
The text was updated successfully, but these errors were encountered:
On Fri, Aug 19, 2016 at 5:57 AM, Danijel Koržinek [email protected]
wrote:
Don't feel like making a pull requesrt for a single line of code.
In scripts/internal/pocolm_common.py:55, CalledProcessError is used
without being properly imported. This error occurs only if
subprocess.check_output fails.
Solution:
either change that to read subprocess.CalledProcessError or add from
subprocess import CalledProcessError at the beginning of the file.
Don't feel like making a pull requesrt for a single line of code.
In scripts/internal/pocolm_common.py:55,
CalledProcessError
is used without being properly imported. This error occurs only if subprocess.check_output fails.Solution:
either change that to read
subprocess.CalledProcessError
or addfrom subprocess import CalledProcessError
at the beginning of the file.The text was updated successfully, but these errors were encountered: