summaryrefslogtreecommitdiff
path: root/math/py-gato/files/patch-Gato.py
blob: 3b16a3055c15b8a5a5222f2116a6401b9d93a71b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--- Gato.py	Wed Jul 08 22:14:29 2009 +0900
+++ Gato.py	Wed Jul 08 22:16:07 2009 +0900
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2.3
+#!/usr/bin/env python
 ################################################################################
 #
 #       This file is part of Gato (Graph Animation Toolbox) 
@@ -1590,11 +1590,11 @@
             self.algoGlobals['A'] = self.GUI.graphDisplay
             # XXX
             # explictely loading packages we want to make available to the algorithm
-        modules = ['DataStructures', 
-                   'AnimatedDataStructures', 
-                   'AnimatedAlgorithms',
-                   'GraphUtil',
-                   'GatoUtil']
+        modules = ['Gato.DataStructures', 
+                   'Gato.AnimatedDataStructures', 
+                   'Gato.AnimatedAlgorithms',
+                   'Gato.GraphUtil',
+                   'Gato.GatoUtil']
         
         for m in modules:
             exec("from %s import *" % m, self.algoGlobals, self.algoGlobals)