From dbd47fe3e0002d9a9c1975075d7435a15b87fb51 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Mon, 16 Apr 2012 23:50:15 +0200 Subject: Make the package compatible with python 2.7 There is actually unittest module now, so we have to work for the possibility that unittest2 is not available. Fixes #49. --- test/test_input.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/test_input.py') diff --git a/test/test_input.py b/test/test_input.py index cfd4142..6b5c5ca 100644 --- a/test/test_input.py +++ b/test/test_input.py @@ -1,7 +1,10 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import, print_function, unicode_literals import test -import unittest2 as unittest +try: + import unittest2 as unittest +except ImportError: + import unittest import yamlish test_data_list = [ -- cgit