From 0f4e82a177eb740338ed867e8705687149e7b65b Mon Sep 17 00:00:00 2001 From: antirotor Date: Thu, 20 Jun 2019 21:30:34 +0200 Subject: [PATCH] fix(global): fixed regex for publishing sequence --- pype/plugins/global/publish/submit_publish_job.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pype/plugins/global/publish/submit_publish_job.py b/pype/plugins/global/publish/submit_publish_job.py index 75a80d0418..992553cc7e 100644 --- a/pype/plugins/global/publish/submit_publish_job.py +++ b/pype/plugins/global/publish/submit_publish_job.py @@ -251,7 +251,7 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin): # This assumes the output files start with subset name and ends with # a file extension. The "ext" key includes the dot with the extension. if "ext" in instance.data: - ext = re.escape(instance.data["ext"]) + ext = r"\." + re.escape(instance.data["ext"]) else: ext = r"\.\D+"