##// END OF EJS Templates
Exclude __pycache__ from profiles list.
Thomas Kluyver -
Show More
@@ -110,7 +110,7 b' def list_bundled_profiles():'
110 profiles = []
110 profiles = []
111 for profile in files:
111 for profile in files:
112 full_path = os.path.join(path, profile)
112 full_path = os.path.join(path, profile)
113 if os.path.isdir(full_path):
113 if os.path.isdir(full_path) and profile != "__pycache__":
114 profiles.append(profile)
114 profiles.append(profile)
115 return profiles
115 return profiles
116
116
General Comments 0
You need to be logged in to leave comments. Login now