Skip to content
This repository has been archived by the owner on Mar 22, 2018. It is now read-only.

Commit

Permalink
repairs the :history command. reported in #245.
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrasca committed Dec 31, 2015
1 parent a01ceb2 commit 66ce34e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bauble/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ def populate_history(self, arg):
for item in session.query(db.History).\
order_by(db.History.timestamp.desc()).all():
model.append([item.timestamp, item.operation, item.user,
item.tablename, item.values])
item.table_name, item.values])
self.treeview.set_model(model)
session.close()

Expand Down

0 comments on commit 66ce34e

Please sign in to comment.