From 64574b1d4ca3ebf701f523cb18c3ce9b843f358c Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Fri, 9 Jun 2017 11:10:44 +0100 Subject: [PATCH] EntryPoint: Fixes local package being used over system level Due to a local file named 'signal.py' this was being imported instead of the system level 'signal' package. This commit ensures the the system level is used instead. --- wlauto/core/entry_point.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wlauto/core/entry_point.py b/wlauto/core/entry_point.py index 6459f8f3..380cb75a 100644 --- a/wlauto/core/entry_point.py +++ b/wlauto/core/entry_point.py @@ -14,6 +14,7 @@ # +from __future__ import absolute_import import sys import argparse import logging