fix oplog __init__ - thx Trip

This commit is contained in:
Max 2021-07-25 21:37:14 -04:00
parent 806d7c44ca
commit f212d1b6ff
1 changed files with 3 additions and 5 deletions

View File

@ -64,10 +64,8 @@ class MyDateType(types.TypeDecorator):
return datetime.datetime.fromtimestamp(value).strftime('%Y-%m-%d %H:%M:%S') return datetime.datetime.fromtimestamp(value).strftime('%Y-%m-%d %H:%M:%S')
class column_helper(object): class column_helper(object):
""" # convenience class - enables columns to be referenced as
convenience class - enables columns to be referenced as # for example, Foo.bar instead of Foo['bar']
for example, Foo.bar instead of Foo['bar']
"""
def __init__(self, table): def __init__(self, table):
self.table_ = db.metadata.tables[table] self.table_ = db.metadata.tables[table]
cols = self.table_.columns cols = self.table_.columns
@ -248,7 +246,7 @@ def about():
def error_page(): def error_page():
params = request.args.to_dict() params = request.args.to_dict()
params['file'] = app.config['SQLALCHEMY_DATABASE_URI'][10:] params['file'] = app.config['SQLALCHEMY_DATABASE_URI'][10:]
return render_template("error.html", params=params) return render_template("error.html", params=params, file=params['file'], code=int(params['code']))
# Inspect TSV (import) - returns a table of the tsv for display in a div, accessed by ajax # Inspect TSV (import) - returns a table of the tsv for display in a div, accessed by ajax
@app.route("/inspect") @app.route("/inspect")