rename local queue module so it won't collide with builtin queue module

This commit is contained in:
Alan Hamlett 2015-02-12 18:07:17 -08:00
parent c8a7bd0729
commit 3918543f0e
2 changed files with 1 additions and 1 deletions

View file

@ -36,7 +36,7 @@ sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 'packages')) sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 'packages'))
from .compat import u, open, is_py3 from .compat import u, open, is_py3
from .queue import Queue from .offlinequeue import Queue
from .log import setup_logging from .log import setup_logging
from .project import find_project from .project import find_project
from .stats import get_file_stats from .stats import get_file_stats