Skip to content

Commit

Permalink
Fix server exception in downloadtable
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Jeffery committed Oct 21, 2016
1 parent 98c06b2 commit 2b8b3ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/responders/downloadtable.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import config
import lzstring
import json
import DQXUtils

def response(returndata):

Expand Down Expand Up @@ -39,7 +40,7 @@ def response(returndata):
line = '\t'.join([str(x) for x in row]) + '\n'
yield line
if DQXDbTools.LogRequests:
DQXUtils.LogServer('###QRY:' + sqlQuery)
DQXUtils.LogServer('###QRY:' + sqlquery)
DQXUtils.LogServer('###PARAMS:' + str(whc.queryparams))


Expand Down

0 comments on commit 2b8b3ef

Please sign in to comment.