Skip to content

Commit

Permalink
handle https urls in db string. spotted by jan____ on irc.
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Feb 3, 2011
1 parent 548a2ce commit 897d29f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions couchapp/config.py
Expand Up @@ -131,6 +131,7 @@ def hooks(self):
def get_dbs(self, db_string=None):
db_string = db_string or ''
if db_string.startswith("http://") or \
db_string.startswith("https://") or \
db_string.startswith("desktopcouch://"):
dburls = db_string
else:
Expand Down

0 comments on commit 897d29f

Please sign in to comment.