Beispiel #1
0
	def real_path(self, path, relative_to=None):
		"""Get real path based on specified parameters."""
		if path.startswith('file://'):
			path = path[7:]

		if relative_to is not None and relative_to.startswith('file://'):
			relative_to = relative_to[7:]

		return Provider.real_path(self, path, relative_to)