Skip to content

Commit

Permalink
mock apsw
Browse files Browse the repository at this point in the history
  • Loading branch information
jpn-- committed Jan 13, 2015
1 parent 36c3e78 commit 3bbe05e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion py/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@
#

import os.path, os, pickle, zlib, glob
from . import logging, apsw
from . import logging
try:
from . import apsw
except ImportError:
from .mock_module import Mock
apsw = Mock()


TemporaryBucket = []

Expand Down

0 comments on commit 3bbe05e

Please sign in to comment.