From 4d01eb478551b578c87bc1e71d01405d9ffb1070 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 31 Oct 2008 13:09:27 -0800 Subject: [PATCH] Use the https url to bugzilla, otherwise people think they need to re-log in. --- src/pypungi/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pypungi/config.py b/src/pypungi/config.py index 70383c3e..d614f9f2 100644 --- a/src/pypungi/config.py +++ b/src/pypungi/config.py @@ -39,7 +39,7 @@ class Config(SafeConfigParser): self.set('default', 'version', time.strftime('%Y%m%d', time.localtime())) self.set('default', 'flavor', '') self.set('default', 'destdir', os.getcwd()) - self.set('default', 'bugurl', 'http://bugzilla.redhat.com') + self.set('default', 'bugurl', 'https://bugzilla.redhat.com') self.set('default', 'cdsize', '650.0') self.set('default', 'debuginfo', "True")