From 22b9bdf945d767ce2d0eee5afb8f7a9ba76f569e Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Fri, 28 Dec 2012 17:02:13 +0000 Subject: sort plugins to fix order --- 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')): -- cgit v0.9.1