Skip to content
Snippets Groups Projects
Commit e7820410 authored by Brandon Rodriguez's avatar Brandon Rodriguez
Browse files

Remove leftover debug output

parent b91569e5
Branches
Tags
No related merge requests found
...@@ -154,11 +154,6 @@ class TableDisplay: ...@@ -154,11 +154,6 @@ class TableDisplay:
default_col_max_len = 7 default_col_max_len = 7
extra_col_max_len = 5 extra_col_max_len = 5
print('\n\n\n\n')
if len(results) > 1:
for index in range(len(results[1])):
print(' {0} - {1}'.format(index, results[1][index]))
# Populate record col sets. # Populate record col sets.
undefined_value = '{0}__UNDEFINED'.format(self._base._config.db_type) undefined_value = '{0}__UNDEFINED'.format(self._base._config.db_type)
for record in results: for record in results:
...@@ -346,12 +341,6 @@ class RecordDisplay: ...@@ -346,12 +341,6 @@ class RecordDisplay:
), ),
display_query=False, display_query=False,
)[0][0] )[0][0]
print('')
print('table_name: {0}'.format(table_name))
print('tab_col: {0}'.format(table_col))
print('col_len: {0}'.format(col_len))
print('record_len: {0}'.format(record_len))
print('')
length = max(col_len, record_len or 0) length = max(col_len, record_len or 0)
col_len_array.append(length) col_len_array.append(length)
total_col_len += length + 2 total_col_len += length + 2
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment