From 3789742cc8c007bb654c176f2a52222959b6b416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 21 May 2019 10:19:34 +0200 Subject: [PATCH] Fixed little bug Missed a function call in a69f4d3fd91958e2fdbc94e661bae10ba1d7f139. --- blender_cloud/flamenco/sdk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blender_cloud/flamenco/sdk.py b/blender_cloud/flamenco/sdk.py index 50849cd..a36b5dd 100644 --- a/blender_cloud/flamenco/sdk.py +++ b/blender_cloud/flamenco/sdk.py @@ -77,7 +77,7 @@ class Manager(List, Find): assert isinstance(some_path, pathlib.PurePath), \ 'some_path should be a PurePath, not %r' % some_path - for varname, path in replacements: + for varname, path in self._path_replacements(): replacement = self.PurePlatformPath(path) try: relpath = some_path.relative_to(replacement)