diff --git a/imbox/utils.py b/imbox/utils.py index 3b4949b..e82deb8 100644 --- a/imbox/utils.py +++ b/imbox/utils.py @@ -3,10 +3,7 @@ logger = logging.getLogger(__name__) def str_encode(value='', encoding=None, errors='strict'): - logger.debug("Encode str {value} with encoding {encoding} and errors {errors}".format( - value=value, - encoding=encoding, - errors=errors)) + logger.debug("Encode str {} with and errors {}".format(value, encoding, errors)) return str(value, encoding, errors) diff --git a/setup.py b/setup.py index 2e7affa..5db6d82 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( author_email='martin@amon.cx', url='https://github.com/martinrusev/imbox', license='MIT', - packages=['imbox'], + packages=['imbox', 'imbox.vendors'], package_dir={'imbox': 'imbox'}, zip_safe=False, classifiers=(