commit:     86b9c28c6abb7193fb39fef1fe7620fc2d0bab72
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  4 00:16:18 2020 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Aug  4 01:08:27 2020 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=86b9c28c

lib/portage/util/env_update.py: fix unnecessary-semicolon

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 lib/portage/util/env_update.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/portage/util/env_update.py b/lib/portage/util/env_update.py
index 9c6fe3cdd..7a2ee2551 100644
--- a/lib/portage/util/env_update.py
+++ b/lib/portage/util/env_update.py
@@ -213,7 +213,7 @@ def _env_update(makelinks, target_root, prev_mtimes, 
contents, env,
                newprelink.write("# contents of /etc/env.d directory\n")
 
                for x in sorted(potential_lib_dirs) + ['bin', 'sbin']:
-                       newprelink.write('-l /%s\n' % (x,));
+                       newprelink.write('-l /%s\n' % (x,))
                prelink_paths = set()
                prelink_paths |= set(specials.get('LDPATH', []))
                prelink_paths |= set(specials.get('PATH', []))

Reply via email to