Commit 6f23976f authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Prevent loading from the project root twice

parent c014b4de
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ def walk_files(start):
	for walkpath, dirnames, filenames in walk(start):
		relpath = path.relpath(walkpath, top)
		relpath = '' if relpath == '.' else relpath
		if loader:
		if loader and relpath:
			try:
				loader.load_from_dir(relpath)
			except SkipDirectory: