diff --git a/Makefile b/Makefile index 346bb025..303af1c8 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ # ex: set ts=8 noet: -all: qt4 +all: qt5 -test: testpy2 +test: testpy3 testpy2: python -m unittest discover tests diff --git a/libs/stringBundle.py b/libs/stringBundle.py index aa99bc99..a84f169b 100644 --- a/libs/stringBundle.py +++ b/libs/stringBundle.py @@ -1,7 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- import re -import resources import os import sys import locale diff --git a/tests/test_stringBundle.py b/tests/test_stringBundle.py index c67af137..d4eb7f26 100644 --- a/tests/test_stringBundle.py +++ b/tests/test_stringBundle.py @@ -1,6 +1,7 @@ import os import sys import unittest +import resources from stringBundle import StringBundle class TestStringBundle(unittest.TestCase):