diff options
author | Xisco Fauli <anistenis@gmail.com> | 2012-11-21 01:03:35 +0100 |
---|---|---|
committer | Xisco Fauli <anistenis@gmail.com> | 2012-11-21 01:08:00 +0100 |
commit | 24d78519af498dc5a116fcdd8f1bb1b457c33a4f (patch) | |
tree | 3ccdc8ee36025c27fe6059d9f698fbdeae61802a /wizards | |
parent | 51767739403dea1511f58bf6c5cebedc1a9d823d (diff) |
pywizards: fix daily build. it failed when importing collections
Change-Id: I74ec9b1562ed9f06a871b4da926129500d54df41
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/common/FileAccess.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/common/FileAccess.py b/wizards/com/sun/star/wizards/common/FileAccess.py index 157cee873294..6440c51c78d7 100644 --- a/wizards/com/sun/star/wizards/common/FileAccess.py +++ b/wizards/com/sun/star/wizards/common/FileAccess.py @@ -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): |