aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage/__init__.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2010-01-27 08:07:31 -0500
committerW. Trevor King <wking@drexel.edu>2010-01-27 08:07:31 -0500
commite0d0e0825add948a89c8ad305a3b259b743ec91d (patch)
treef5561aa2391b2c5bc6153fa3c60ed52640d21aca /libbe/storage/__init__.py
parent2cc9755aef6a7b36bf1b32519b5997b5221f4e5a (diff)
downloadbugseverywhere-e0d0e0825add948a89c8ad305a3b259b743ec91d.tar.gz
Streamlined libbe.command.serve, adding --auth option, #/bea/c1b#, and testing.
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)