We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bca8724 commit e61082dCopy full SHA for e61082d
1 file changed
client/deis.py
@@ -605,7 +605,7 @@ def apps_logs(self, args):
605
# strip the last newline character
606
for line in response.json().split('\n')[:-1]:
607
# get the tag from the log
608
- log_tag = line.split(': ')[0].split(' ')[2]
+ log_tag = line.split(': ')[0].split(' ')[1]
609
# colorize the log based on the tag
610
color = sum([ord(ch) for ch in log_tag]) % 6
611
def f(x):
0 commit comments