summaryrefslogtreecommitdiffstats
path: root/contrib/python/future/html/parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/future/html/parser.py')
-rw-r--r--contrib/python/future/html/parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/future/html/parser.py b/contrib/python/future/html/parser.py
index d23f435b23e..e39488797eb 100644
--- a/contrib/python/future/html/parser.py
+++ b/contrib/python/future/html/parser.py
@@ -2,7 +2,7 @@ from __future__ import absolute_import
import sys
__future_module__ = True
-if sys.version_info[0] >= 3:
+if sys.version_info[0] >= 3:
raise ImportError('Cannot import module from python-future source folder')
else:
from future.moves.html.parser import *