From b80919246825fc8b47fcfae6fbbe851758cff2c0 Mon Sep 17 00:00:00 2001 From: Mike Evans Date: Sat, 4 Feb 2017 16:44:41 +0000 Subject: [PATCH] Fix for Issue 227. --- tclCommands/TclCommandOffset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tclCommands/TclCommandOffset.py b/tclCommands/TclCommandOffset.py index 17ffdaac..63ddc607 100644 --- a/tclCommands/TclCommandOffset.py +++ b/tclCommands/TclCommandOffset.py @@ -50,4 +50,4 @@ class TclCommandOffset(TclCommand.TclCommand): name = args['name'] x, y = args['x'], args['y'] - self.app.collection.get_by_name(name).offset(x, y) + self.app.collection.get_by_name(name).offset((x, y))