Make getCaptchaImage return (bytes, str).
[tor-bridgedb.git] / bridgedb / __init__.py
blob3643ea70441411e39790d6a2c0304744a53dd3d2
2 # This file is part of BridgeDB, a Tor bridge distribution system.
4 # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 <isis@torproject.org>
5 # please also see AUTHORS file
6 # :copyright: (c) 2007-2013, The Tor Project, Inc.
7 # (c) 2007-2013, all entities within the AUTHORS file
8 # :license: 3-clause BSD, see included LICENSE for information
10 from ._version import get_versions
11 from ._langs import get_langs
13 __version__ = get_versions()['version']
14 __langs__ = get_langs()
16 del get_versions
17 del get_langs