From 6841d879aa9b300f06d52b0bc115d0caf4796ed7 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Sun, 31 Mar 2019 10:51:52 +0200 Subject: [PATCH] obi history: fixed a bug when displaying ascii history --- python/obitools3/commands/history.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/obitools3/commands/history.pyx b/python/obitools3/commands/history.pyx index 6a65734..e3edab6 100755 --- a/python/obitools3/commands/history.pyx +++ b/python/obitools3/commands/history.pyx @@ -51,7 +51,7 @@ def run(config): print(bytes2str(entries.dot_history_graph)) elif config['history']['format'] == "ascii" : if isinstance(entries, View): - print(bytes2str(entries.ascii_history_graph)) + print(bytes2str(entries.ascii_history)) else: raise Exception("ASCII history only available for views")