Skip to content

Commit

Permalink
fix all relative imports to be py3 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
esc committed May 10, 2014
1 parent 13869db commit cd269a1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bloscpack/abstract_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
)
from .pretty import (double_pretty_size,
)
import log
from . import log


def _compress_chunk_str(chunk, blosc_args):
Expand Down
2 changes: 1 addition & 1 deletion bloscpack/append.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
)
from .util import (open_two_file,
)
import log
from . import log


def append_fp(original_fp, new_content_fp, new_size, blosc_args=None):
Expand Down
2 changes: 1 addition & 1 deletion bloscpack/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from .pretty import (double_pretty_size,
reverse_pretty,
)
from bloscpack import log
from . import log

# Bloscpack args
BLOSCPACK_ARGS = ('offsets', 'checksum', 'max_app_chunks')
Expand Down
2 changes: 1 addition & 1 deletion bloscpack/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
join_with_eol,
)
from .version import __version__
import log
from . import log


def check_files(in_file, out_file, args):
Expand Down
2 changes: 1 addition & 1 deletion bloscpack/file_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
CompressedSource,
CompressedSink,
)
import log
from . import log


def _write_metadata(output_fp, metadata, metadata_args):
Expand Down
2 changes: 1 addition & 1 deletion bloscpack/headers.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
)
from .util import (memoryview,
)
import log
from . import log


def check_range(name, value, min_, max_):
Expand Down

0 comments on commit cd269a1

Please sign in to comment.