use absolute imports for Python 3 compatibility

This commit is contained in:
András Veres-Szentkirályi 2014-06-07 11:19:47 +02:00
parent 9ef2a5a8ca
commit 09df062547
4 changed files with 5 additions and 6 deletions

View file

@ -4,8 +4,7 @@ from __future__ import print_function
from PIL import Image
from argparse import ArgumentParser
from sys import stderr
import color
import grayscale
from pysstv import color, grayscale
SSTV_MODULES = [color, grayscale]