From 0f6491be69027a55b7620840e228c18eaa9567d1 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Thu, 31 May 2018 19:53:29 +0300 Subject: [PATCH] - fixed module imports for Python3 --- tclCommands/TclCommandFollow.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tclCommands/TclCommandFollow.py b/tclCommands/TclCommandFollow.py index 46bc4cb3..36ec3f31 100644 --- a/tclCommands/TclCommandFollow.py +++ b/tclCommands/TclCommandFollow.py @@ -1,8 +1,7 @@ -from ObjectCollection import * -import TclCommand +from tclCommands.TclCommand import * -class TclCommandFollow(TclCommand.TclCommandSignaled): +class TclCommandFollow(TclCommandSignaled): """ Tcl shell command to follow a Gerber file """