From e804272724530ca63b0b10df325881359c3a2cc6 Mon Sep 17 00:00:00 2001 From: leminlimez <59540996+leminlimez@users.noreply.github.com> Date: Fri, 4 Apr 2025 10:01:31 -0400 Subject: [PATCH] fix windows path bug (again) --- devicemanagement/device_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devicemanagement/device_manager.py b/devicemanagement/device_manager.py index 73981fe..aed1ce6 100644 --- a/devicemanagement/device_manager.py +++ b/devicemanagement/device_manager.py @@ -333,7 +333,7 @@ class DeviceManager: elif isinstance(tweak, PosterboardTweak): tmp_pb_dir = TemporaryDirectory() tweak.apply_tweak( - files_to_restore=files_to_restore, output_dir=tmp_pb_dir.name, + files_to_restore=files_to_restore, output_dir=fix_windows_path(tmp_pb_dir.name), version=self.get_current_device_version(), update_label=update_label ) if tweak.enabled: