V0.6 #852

Merged
Atheros1 merged 399 commits from v0.6 into master 2016-05-03 01:58:38 +02:00
Showing only changes of commit 6ad3c956c9 - Show all commits

View File

@ -11,6 +11,8 @@ def sqlQuery(sqlStatement, *args):
if args == (): if args == ():
sqlSubmitQueue.put('') sqlSubmitQueue.put('')
elif type(args[0]) in [list, tuple]:
sqlSubmitQueue.put(args[0])
else: else:
sqlSubmitQueue.put(args) sqlSubmitQueue.put(args)