From 0684615a8497b36380f55ed170ae5792b8105e3c Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Jun 27 2008 04:12:36 +0000 Subject: added a default URL to config.py this way, the plugin actually loads when you load it for the first time --- diff --git a/config.py b/config.py index b464e61..8062a59 100644 --- a/config.py +++ b/config.py @@ -46,7 +46,8 @@ Fedora = conf.registerPlugin('Fedora') # registry.Boolean(False, """Help for someConfigVariableName.""")) conf.registerGroup(Fedora, 'fas') conf.registerGlobalValue(Fedora.fas, 'url', - registry.String('', """URL for the Fedora Account System""")) + registry.String('https://admin.fedoraproject.org/accounts/', + """URL for the Fedora Account System""")) conf.registerGlobalValue(Fedora.fas, 'username', registry.String('', """Username for the Fedora Account System""", private=True))