Merge pull request #2217 from Depaulicious/patch-1
Fix __future__ import in util
This commit is contained in:
commit
6c21911eb0
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 within
|
||||
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