Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/
Date: Tue, 04 Aug 2020 01:39:23
Message-Id: 1596503294.aefc24179b63c5e2528c12cd964a3556fb27cb78.zmedico@gentoo
1 commit: aefc24179b63c5e2528c12cd964a3556fb27cb78
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 4 00:16:16 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 4 01:08:14 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=aefc2417
7
8 lib/portage/output.py: fix unnecessary-semicolon
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 lib/portage/output.py | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/lib/portage/output.py b/lib/portage/output.py
17 index ab99caf98..098285a52 100644
18 --- a/lib/portage/output.py
19 +++ b/lib/portage/output.py
20 @@ -231,7 +231,7 @@ def _parse_color_map(config_root='/', onerror=None):
21 raise
22
23 def nc_len(mystr):
24 - tmp = re.sub(esc_seq + "^m]+m", "", mystr);
25 + tmp = re.sub(esc_seq + "^m]+m", "", mystr)
26 return len(tmp)
27
28 _legal_terms_re = re.compile(r'^(xterm|xterm-color|Eterm|aterm|rxvt|screen|kterm|rxvt-unicode|gnome|interix|tmux|st-256color|alacritty|konsole)')