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
In python 2.6, running a local command failed by raising an AttributeError when attempting to access subprocess._subprocess.
Looks like this is a regression caused by the FIX of issue #30.
The fix is to simply check if hasattr( subprocess, "_subprocess" ) and act accordingly.
The text was updated successfully, but these errors were encountered:
In python 2.6, running a local command failed by raising an AttributeError when attempting to access subprocess._subprocess.
Looks like this is a regression caused by the FIX of issue #30.
The fix is to simply check if hasattr( subprocess, "_subprocess" ) and act accordingly.
The text was updated successfully, but these errors were encountered: