From d1b1442e16fcd490d485f892bb1b0ebe7fa6fb1a Mon Sep 17 00:00:00 2001 From: Manuel Guenther <manuel.guenther@idiap.ch> Date: Tue, 22 Oct 2013 14:38:19 +0200 Subject: [PATCH] Improved python3 compatibility of the package. --- setup.py | 2 +- xbob/db/replay/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9be25df..d6f7aa6 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages setup( name='xbob.db.replay', - version='1.0.3a0', + version='1.0.4a0', description='Replay Attack Database Access API for Bob', url='http://pypi.python.org/pypi/xbob.db.replay', license='GPLv3', diff --git a/xbob/db/replay/__init__.py b/xbob/db/replay/__init__.py index 917d6b4..068da96 100644 --- a/xbob/db/replay/__init__.py +++ b/xbob/db/replay/__init__.py @@ -26,6 +26,6 @@ on your references: from .query import Database from .models import Client, File, Protocol, RealAccess, Attack -import spoofing +from . import spoofing __all__ = dir() -- GitLab