From 5d3cf1b61b6b6d80f5a02cf337e3a14697ce7957 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sun, 29 Jan 2012 23:29:44 +0530 Subject: [PATCH] sort volume --- pandora_client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_client/__init__.py b/pandora_client/__init__.py index b2889ca..1759fb9 100644 --- a/pandora_client/__init__.py +++ b/pandora_client/__init__.py @@ -297,7 +297,7 @@ class Client(object): conn, c = self._conn() volumes = {} - for name in self._config['volumes']: + for name in sorted(self._config['volumes']): path = self._config['volumes'][name] path = os.path.normpath(path)