summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Vandenberg <jayvdb@gmail.com>2015-10-19 18:42:41 +1100
committerJohn Vandenberg <jayvdb@gmail.com>2015-10-19 18:42:41 +1100
commitf31e2f2e5e3d614e97d61c9cd515835fe7366390 (patch)
tree01aa26f542cb3c298fcbbc77bbd7166a0b29914f
parent287dc928a5cc9f56f342e4abd3c60ff3bf44e3ed (diff)
downloadastroid-f31e2f2e5e3d614e97d61c9cd515835fe7366390.tar.gz
Replace __future__.print_statement with print_functionprint_statement
1c35a97 fixed Python 2 only print statements, and imported a mix of __future__.print_function and __future__.print_statement. 1826d98 fixed most of them, however this one still remains.
-rw-r--r--astroid/tests/testdata/python2/data/appl/myConnection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/tests/testdata/python2/data/appl/myConnection.py b/astroid/tests/testdata/python2/data/appl/myConnection.py
index 35fc0ab..5b24b25 100644
--- a/astroid/tests/testdata/python2/data/appl/myConnection.py
+++ b/astroid/tests/testdata/python2/data/appl/myConnection.py
@@ -1,4 +1,4 @@
-from __future__ import print_statement
+from __future__ import print_function
from data import SSL1
class MyConnection(SSL1.Connection):