Skip to content

Commit 387225e

Browse files
authored
Banner char length update
1 parent 96d28b1 commit 387225e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Interlace/lib/core/output.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ def __init__(self, arguments):
1212

1313
self.verbose = arguments.verbose
1414
self.silent = arguments.silent
15-
self.seperator = "================================================================================="
15+
self.seperator = "====================================================="
1616

1717
def print_banner(self):
1818
if self.silent:
1919
return
2020

2121
print(self.seperator)
22-
print("Interlace v%s\tby Michael Skelton (@codingo_) & Sajeeb Lohani (@sml555_)" % __version__)
22+
print("Interlace v%s\tby Michael Skelton (@codingo_)" % __version__)
23+
print(" & Sajeeb Lohani (@sml555_)")
2324
print(self.seperator)
2425

2526
def terminal(self, level, target, command, message=""):

0 commit comments

Comments
 (0)