diff --git a/Interlace/lib/core/output.py b/Interlace/lib/core/output.py index 3151670..563ef3b 100644 --- a/Interlace/lib/core/output.py +++ b/Interlace/lib/core/output.py @@ -12,14 +12,15 @@ class OutputHelper(object): self.verbose = arguments.verbose self.silent = arguments.silent - self.seperator = "=================================================================================" + self.seperator = "=====================================================" def print_banner(self): if self.silent: return print(self.seperator) - print("Interlace v%s\tby Michael Skelton (@codingo_) & Sajeeb Lohani (@sml555_)" % __version__) + print("Interlace v%s\tby Michael Skelton (@codingo_)" % __version__) + print(" & Sajeeb Lohani (@sml555_)") print(self.seperator) def terminal(self, level, target, command, message=""):