Skip to content

Commit fedef8c

Browse files
committed
Fix Syntax error
1 parent efcc03e commit fedef8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_query_to_table/DjangoQtt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def generateFromSql(cursor, title, sqltext, footerCols= None, htmlClass="", dire
3939
sumOfColumn[c]="-"
4040

4141
# travers in rows and aggrigate the values of columns those are in footerCols
42-
for d in data :
42+
for d in data :
4343
for attr, value in dict(d).items() :
4444
if(attr in sumCols):
4545
sumOfColumn[attr]=sumOfColumn[attr]+int(str(value).replace(",", ""))

0 commit comments

Comments
 (0)