From 387225e3ed0f55281b7c8a9ec33e37e44cb76c27 Mon Sep 17 00:00:00 2001 From: Michael Skelton <886344+codingo@users.noreply.github.com> Date: Tue, 4 Jun 2019 15:39:35 +1000 Subject: [PATCH] Banner char length update --- Interlace/lib/core/output.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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=""):