We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ee808 commit 40db96cCopy full SHA for 40db96c
srum-dump/srum_dump.py
@@ -254,8 +254,9 @@
254
#Format each column in the row
255
for position, eachcol in enumerate(table_object.column_names):
256
out_format = trans_table.get(eachcol, None)
257
- embedded_value = each_record.value(eachcol)
258
- if not out_format or not embedded_value: #Default
+ embedded_value = each_record.value(eachcol)
+
259
+ if (not out_format) or (not embedded_value) or (embedded_value == "Empty"): #Default
260
val = embedded_value
261
new_row.append( val )
262
elif out_format == "APPID":
0 commit comments