Fix missing absolute import declarations

This commit is contained in:
Gina Häußge 2016-10-10 19:45:34 +02:00
parent e8123a6ab1
commit 139b2277d1
3 changed files with 5 additions and 0 deletions

View file

@ -1,4 +1,6 @@
#!/usr/bin/env python
from __future__ import absolute_import
import sys
from octoprint.daemon import Daemon
from octoprint.server import Server

View file

@ -1,4 +1,5 @@
# coding=utf-8
from __future__ import absolute_import
__author__ = "Gina Häußge <osd@foosel.net>"
__license__ = 'GNU Affero General Public License http://www.gnu.org/licenses/agpl.html'

View file

@ -1,4 +1,6 @@
# coding=utf-8
from __future__ import absolute_import
"""
This module bundles commonly used utility methods or helper classes that are used in multiple places withing
OctoPrint's source code.