aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage/__init__.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2010-01-27 08:50:48 -0500
committerW. Trevor King <wking@drexel.edu>2010-01-27 08:50:48 -0500
commitea9101f85a70d2978a138425dc8d0699dc8eb05e (patch)
treef5561aa2391b2c5bc6153fa3c60ed52640d21aca /libbe/storage/__init__.py
parent2cc9755aef6a7b36bf1b32519b5997b5221f4e5a (diff)
parente0d0e0825add948a89c8ad305a3b259b743ec91d (diff)
downloadbugseverywhere-ea9101f85a70d2978a138425dc8d0699dc8eb05e.tar.gz
Merged be.auth, adding "--auth" to `be serve`
Diffstat (limited to 'libbe/storage/__init__.py')
-rw-r--r--libbe/storage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/storage/__init__.py b/libbe/storage/__init__.py
index b6b0ac1..c3bda4b 100644
--- a/libbe/storage/__init__.py
+++ b/libbe/storage/__init__.py
@@ -50,7 +50,7 @@ def get_storage(location):
"""
Return a Storage instance from a repo location string.
"""
- if location.startswith('http://'):
+ if location.startswith('http://') or location.startswith('https://'):
return get_http_storage(location)
return get_vcs_storage(location)