mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 02:49:27 +01:00
Add missing future imports for print_function
There are some places where `print()` is used to print a blank line. However, unless the future feature `print_function` is imported, that will print `()` in Python 2.
This commit is contained in:
parent
8b401249b8
commit
9f059b91ba
@ -28,6 +28,8 @@
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
###
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
from supybot.test import *
|
||||
|
||||
class MathTestCase(PluginTestCase):
|
||||
|
@ -27,6 +27,8 @@
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
###
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import time
|
||||
|
||||
from supybot.test import *
|
||||
|
@ -30,6 +30,8 @@
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
###
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import supybot
|
||||
|
||||
import os
|
||||
|
@ -30,6 +30,8 @@
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
###
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user