From 30852ab7d537bf66c61deb6603ba6cc81321ddf6 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Sun, 12 Apr 2020 17:36:04 +0200 Subject: [PATCH] View bash history: removed useless shebang --- python/obitools3/dms/view/view.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/obitools3/dms/view/view.pyx b/python/obitools3/dms/view/view.pyx index a35ac39..854b991 100755 --- a/python/obitools3/dms/view/view.pyx +++ b/python/obitools3/dms/view/view.pyx @@ -526,7 +526,7 @@ cdef class View(OBIWrapper) : # bash command history property getter @property def bash_history(self): - s = b"#!/bin/bash\n\n" + s = b"" first = True for level in self.view_history: command_list = [level[input][b"command_line"] for input in level.keys()]