Fix __future__ import in util
This syntax is accepted by CPython, but it doesn't work on PyPy.
This commit is contained in:
parent
b6cf895c56
commit
fd7fdec565
1 changed files with 1 additions and 2 deletions
|
|
@ -1,11 +1,10 @@
|
|||
# coding=utf-8
|
||||
from __future__ import absolute_import
|
||||
from __future__ import absolute_import, division, print_function
|
||||
|
||||
"""
|
||||
This module bundles commonly used utility methods or helper classes that are used in multiple places withing
|
||||
OctoPrint's source code.
|
||||
"""
|
||||
from __future__ import absolute_import, division, print_function
|
||||
|
||||
__author__ = "Gina Häußge <osd@foosel.net>"
|
||||
__license__ = 'GNU Affero General Public License http://www.gnu.org/licenses/agpl.html'
|
||||
|
|
|
|||
Loading…
Reference in a new issue