summaryrefslogtreecommitdiff
path: root/common/src/leap/soledad/common/l2db/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/leap/soledad/common/l2db/__init__.py')
-rw-r--r--common/src/leap/soledad/common/l2db/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/src/leap/soledad/common/l2db/__init__.py b/common/src/leap/soledad/common/l2db/__init__.py
index e33309a4..cc121d06 100644
--- a/common/src/leap/soledad/common/l2db/__init__.py
+++ b/common/src/leap/soledad/common/l2db/__init__.py
@@ -14,14 +14,14 @@
# You should have received a copy of the GNU Lesser General Public License
# along with u1db. If not, see <http://www.gnu.org/licenses/>.
-"""U1DB"""
+"""L2DB"""
try:
import simplejson as json
except ImportError:
import json # noqa
-from u1db.errors import InvalidJSON, InvalidContent
+from leap.soledad.common.l2db.errors import InvalidJSON, InvalidContent
__version_info__ = (13, 9)
__version__ = '.'.join(map(lambda x: '%02d' % x, __version_info__))
@@ -40,7 +40,7 @@ def open(path, create, document_factory=None):
parameters as Document.__init__.
:return: An instance of Database.
"""
- from u1db.backends import sqlite_backend
+ from leap.soledad.common.l2db.backends import sqlite_backend
return sqlite_backend.SQLiteDatabase.open_database(
path, create=create, document_factory=document_factory)