Fixing more relative import statements

This commit is contained in:
Philipp Klaus 2015-02-18 15:54:36 +01:00
parent 7ace94b023
commit e6fa61c82b
2 changed files with 5 additions and 5 deletions

View file

@ -30,9 +30,9 @@ def read(filename):
CncFile object representing the file, either GerberFile or
ExcellonFile. Returns None if file is not an Excellon or Gerber file.
"""
import rs274x
import excellon
from utils import detect_file_format
from . import rs274x
from . import excellon
from .utils import detect_file_format
fmt = detect_file_format(filename)
if fmt == 'rs274x':
return rs274x.read(filename)

View file

@ -24,5 +24,5 @@ SVG is the only supported format.
"""
from svgwrite_backend import GerberSvgContext
from cairo_backend import GerberCairoContext
from .svgwrite_backend import GerberSvgContext
from .cairo_backend import GerberCairoContext