Mercurial > p > roundup > code
diff roundup/roundupdb.py @ 1252:209a47ede743
allow blank passwords again [SF#619714]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 08 Oct 2002 04:11:17 +0000 |
| parents | deab62016de7 |
| children | fe67477e678f |
line wrap: on
line diff
--- a/roundup/roundupdb.py Tue Oct 08 03:31:09 2002 +0000 +++ b/roundup/roundupdb.py Tue Oct 08 04:11:17 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: roundupdb.py,v 1.70 2002-10-08 03:27:24 richard Exp $ +# $Id: roundupdb.py,v 1.71 2002-10-08 04:11:13 richard Exp $ __doc__ = """ Extending hyperdb with types specific to issue-tracking. @@ -291,7 +291,7 @@ # then append a trailing slash if it is missing base = self.db.config.TRACKER_WEB if (not isinstance(base , type('')) or - not base.startswith('http://'): + not base.startswith('http://') or not base.startswith('https://')): base = "Configuration Error: TRACKER_WEB isn't a " \ "fully-qualified URL"
