aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'repoman/pym/repoman/_subprocess.py')
-rw-r--r--repoman/pym/repoman/_subprocess.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/repoman/pym/repoman/_subprocess.py b/repoman/pym/repoman/_subprocess.py
index dcdc985fe..b6c19bda3 100644
--- a/repoman/pym/repoman/_subprocess.py
+++ b/repoman/pym/repoman/_subprocess.py
@@ -23,7 +23,7 @@ def repoman_getstatusoutput(cmd):
if sys.hexversion < 0x3020000 and sys.hexversion >= 0x3000000 and \
not os.path.isabs(args[0]):
# 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 = find_binary(args[0])
if fullname is None:
raise portage.exception.CommandNotFound(args[0])
@@ -56,7 +56,7 @@ class repoman_popen(portage.proxy.objectproxy.ObjectProxy):
if sys.hexversion < 0x3020000 and sys.hexversion >= 0x3000000 and \
not os.path.isabs(args[0]):
# 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 = find_binary(args[0])
if fullname is None:
raise portage.exception.CommandNotFound(args[0])