LayerWriter plugin: Fix log wrong (non-existent) variable

This commit is contained in:
Gustavo Moreira
2024-05-06 11:17:51 +10:00
parent c7f29936dc
commit 32a5f131fd
+1 -3
View File
@@ -115,9 +115,7 @@ class LayerWriter(plugins.PluginInterface):
)
file_handle.close()
except IOError as excp:
yield 0, (
f"Layer cannot be written to {self.config['output_name']}: {excp}",
)
yield 0, (f"Layer cannot be written to {output_name}: {excp}",)
yield 0, (f"Layer has been written to {output_name}",)