aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'repoman/pym/repoman/gpg.py')
-rw-r--r--repoman/pym/repoman/gpg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/repoman/pym/repoman/gpg.py b/repoman/pym/repoman/gpg.py
index 26e243201..a3c12b3c9 100644
--- a/repoman/pym/repoman/gpg.py
+++ b/repoman/pym/repoman/gpg.py
@@ -53,7 +53,7 @@ def gpgsign(filename, repoman_settings, options):
if sys.hexversion < 0x3020000 and sys.hexversion >= 0x3000000 and \
not os.path.isabs(gpgcmd[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(gpgcmd[0])
if fullname is None:
raise portage.exception.CommandNotFound(gpgcmd[0])