File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 22 Some more fixes for Issues 16 to 24
33 [spamsch]
44
5+ Removing support for SA 0.5.x
6+ [spamsch]
7+
580.6b1
69 Fixes for SA 0.6.x
710 [percious]
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ def create_parser():
9090
9191
9292 parser .set_defaults (tables = [],
93- encoding = 'utf8 ' ,
93+ encoding = 'utf-8 ' ,
9494 table_prefix = '' ,
9595 table_suffix = '' )
9696
Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ def main():
3838 reflection_schema = options .schema
3939 else :
4040 try :
41- reflection_schema = db .dialect .get_default_schema_name (conn )
41+ reflection_schema = db .dialect ._get_default_schema_name (conn )
4242 except NotImplementedError :
4343 reflection_schema = None
4444
45- tablenames = db .dialect .table_names (conn , reflection_schema )
45+ tablenames = db .dialect .get_table_names (conn , reflection_schema )
4646
4747 # fixme: don't set up output until we're sure there's work to do!
4848 if options .tables :
You can’t perform that action at this time.
0 commit comments