View bash history: removed useless shebang

This commit is contained in:
Celine Mercier
2020-04-12 17:36:04 +02:00
parent 4d0299904e
commit 30852ab7d5

View File

@ -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()]