0
我有以下問題:Python的子AttributeError的
try:
with subprocess.check_call(query):
return 1
except ValueError:
return -1
此代碼運行shell腳本,它的工作至今。腳本返回0.然而,我得到這個錯誤:
with subprocess.check_call(query):
AttributeError: 'int' object has no attribute '__exit__'
所以必須有一些錯誤,我的嘗試/ except塊。