def history(self, conf, dburl=None, verbose=None): if dburl is None: commands.history(verbose, sql_url=CONF.sql_connection) else: commands.history(verbose, sql_url=str(dburl))
def history(self, args): commands.history(args.verbose, sql_url=args.dburl)
def history(self, dburl=None, verbose=None): if dburl is None: commands.history(verbose, sql_url=CONF.sql_connection) else: commands.history(verbose, sql_url=str(dburl))