Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2012-12-28 17:02:13 (GMT)
committer Walter Bender <walter.bender@gmail.com>2012-12-28 17:02:13 (GMT)
commit22b9bdf945d767ce2d0eee5afb8f7a9ba76f569e (patch)
treee1f8d5174e9f558e4801259a8da85e4646a1d8ce /TurtleArt
parentf038f28cb92c340b70d38431e3e02feeb3274e37 (diff)
sort plugins to fix order
Diffstat (limited to 'TurtleArt')
-rw-r--r--TurtleArt/tawindow.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py
index fc3da7e..6e21109 100644
--- a/TurtleArt/tawindow.py
+++ b/TurtleArt/tawindow.py
@@ -304,6 +304,7 @@ class TurtleArtWindow():
plugin_files = []
if path is not None:
candidates = os.listdir(path)
+ candidates.sort()
for dirname in candidates:
if os.path.exists(
os.path.join(path, dirname, dirname + '.py')):