Removed unused variable queryreturn from helper_sql

This commit is contained in:
Mahendra 2018-04-07 13:18:58 +05:30
parent 21922251e2
commit 498557a6d6
No known key found for this signature in database
GPG Key ID: A672D8FAAEE398B3
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ def sqlExecute(sqlStatement, *args):
sqlSubmitQueue.put('')
else:
sqlSubmitQueue.put(args)
queryreturn, rowcount = sqlReturnQueue.get()
_, rowcount = sqlReturnQueue.get()
sqlSubmitQueue.put('commit')
sqlLock.release()
return rowcount