From 9412579d862451e2b8d14f0010f16df7ecce61f5 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Fri, 27 Jun 2014 15:17:48 -0400 Subject: [PATCH] Remove unnecessary unicode_literals. --- mwparserfromhell/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/mwparserfromhell/__init__.py b/mwparserfromhell/__init__.py index e7459e3..9c29fd2 100644 --- a/mwparserfromhell/__init__.py +++ b/mwparserfromhell/__init__.py @@ -26,8 +26,6 @@ Parser from Hell) is a Python package that provides an easy-to-use and outrageously powerful parser for `MediaWiki `_ wikicode. """ -from __future__ import unicode_literals - __author__ = "Ben Kurtovic" __copyright__ = "Copyright (C) 2012, 2013, 2014 Ben Kurtovic" __license__ = "MIT License"