diff options
author | W. Trevor King <wking@drexel.edu> | 2010-01-27 08:50:48 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-01-27 08:50:48 -0500 |
commit | ea9101f85a70d2978a138425dc8d0699dc8eb05e (patch) | |
tree | f5561aa2391b2c5bc6153fa3c60ed52640d21aca /libbe/storage/__init__.py | |
parent | 2cc9755aef6a7b36bf1b32519b5997b5221f4e5a (diff) | |
parent | e0d0e0825add948a89c8ad305a3b259b743ec91d (diff) | |
download | bugseverywhere-ea9101f85a70d2978a138425dc8d0699dc8eb05e.tar.gz |
Merged be.auth, adding "--auth" to `be serve`
Diffstat (limited to 'libbe/storage/__init__.py')
-rw-r--r-- | libbe/storage/__init__.py | 2 |
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) |