Commit 7fb5d777 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Normalise git ignore files paths

parent f5137213
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ class GitLoader(loaders.Loader):

	def load_patterns(self, directory, filename):
		rule_list = []
		fullpath = path.join(self.project_root, directory, filename)
		fullpath = path.normpath(path.join(self.project_root, directory, filename))
		with open(fullpath) as f:
			for line in f:
				rule_opts = dict(with_path=True)