# HG changeset patch # User catherine@cordelia # Date 1210887474 14400 # Node ID a7be838c4ad5eed150256c9c4c2638b0e4844942 # Parent 5701fb63e81d54e907928474fa07199cdbde46cd fixes to --all diff -r 5701fb63e81d -r a7be838c4ad5 sqlpyPlus.py --- a/sqlpyPlus.py Thu May 15 17:28:12 2008 -0400 +++ b/sqlpyPlus.py Thu May 15 17:37:54 2008 -0400 @@ -740,7 +740,7 @@ @options([make_option('-a','--all',action='store_true', help='Describe all objects (not just my own)')]) - def do__dir_tables(self, arg): + def do__dir_tables(self, arg, opts): if opts.all: which_view = (', owner', 'all') else: @@ -750,7 +750,7 @@ @options([make_option('-a','--all',action='store_true', help='Describe all objects (not just my own)')]) - def do__dir_views(self, arg): + def do__dir_views(self, arg, opts): if opts.all: which_view = (', owner', 'all') else: @@ -760,7 +760,7 @@ @options([make_option('-a','--all',action='store_true', help='Describe all objects (not just my own)')]) - def do__dir_indexes(self, arg): + def do__dir_indexes(self, arg, opts): if opts.all: which_view = (', owner', 'all') else: