Skip to content

Commit e61082d

Browse files
author
Matthew Fisher
committed
fix(client): search for tag
1 parent bca8724 commit e61082d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/deis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ def apps_logs(self, args):
605605
# strip the last newline character
606606
for line in response.json().split('\n')[:-1]:
607607
# get the tag from the log
608-
log_tag = line.split(': ')[0].split(' ')[2]
608+
log_tag = line.split(': ')[0].split(' ')[1]
609609
# colorize the log based on the tag
610610
color = sum([ord(ch) for ch in log_tag]) % 6
611611
def f(x):

0 commit comments

Comments
 (0)