schema.py
changeset 2598 a66fe74bd9fc
parent 2596 d02eed70937f
child 2616 4501ee760eec
--- a/schema.py	Fri Jul 31 23:32:07 2009 +0200
+++ b/schema.py	Fri Jul 31 23:33:05 2009 +0200
@@ -869,9 +869,9 @@
         """
         self.info('loading %s schemas', ', '.join(config.cubes()))
         if config.apphome:
-            path = reversed([config.apphome] + config.cubes_path())
+            path = tuple(reversed([config.apphome] + config.cubes_path()))
         else:
-            path = reversed(config.cubes_path())
+            path = tuple(reversed(config.cubes_path()))
         try:
             return super(CubicWebSchemaLoader, self).load(config, path=path, **kwargs)
         finally: