Skip to content

Commit 747532e

Browse files
committed
More fix for improvements on instance.py.
Loading of schema.py with "optimize" set didn't honor libdir, which is inconsistent with loading of schema.py with "optimize" unset and loading of other files in tracker home.
1 parent 93659c3 commit 747532e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/instance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def open(self, name=None):
106106

107107
if self.optimize:
108108
# execute preloaded schema object
109-
exec(self.schema, env)
109+
self._exec(self.schema, env)
110110
if callable (self.schema_hook):
111111
self.schema_hook(**env)
112112
# use preloaded detectors

0 commit comments

Comments
 (0)