aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/__init__.py')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 0612e22bc..427f79bc0 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -432,7 +432,7 @@ if platform.system() in ('FreeBSD',):
if sys.hexversion < 0x3020000 and sys.hexversion >= 0x3000000:
# Python 3.1 _execvp throws TypeError for non-absolute executable
- # path passed as bytes (see http://bugs.python.org/issue8513).
+ # path passed as bytes (see https://bugs.python.org/issue8513).
fullname = process.find_binary(cmd[0])
if fullname is None:
raise exception.CommandNotFound(cmd[0])