pywizards: fix daily build. it failed when importing collections

Change-Id: I74ec9b1562ed9f06a871b4da926129500d54df41
This commit is contained in:
Xisco Fauli
2012-11-21 01:03:35 +01:00
parent 5176773940
commit 24d78519af

View File

@@ -17,7 +17,6 @@
#
import traceback
import types
from collections import OrderedDict
from os import path as osPath
from .NoValidPathException import NoValidPathException
@@ -211,7 +210,8 @@ class FileAccess(object):
except Exception:
traceback.print_exc()
return OrderedDict(sorted(LocLayoutFiles.items(), key=lambda t: t[0]))
#TODO: return it sorted
return LocLayoutFiles
@classmethod
def addPath(self, _sPath, _sPath2):