From 1a9e1814dabe0fdc78a5c821e387dc721a1a6d42 Mon Sep 17 00:00:00 2001 From: Lupi <65565211+lupionpe@users.noreply.github.com> Date: Tue, 26 Sep 2023 17:19:13 -0300 Subject: [PATCH] fix: missing f'string --- gcp_find.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcp_find.py b/gcp_find.py index 8895534..6885b2a 100755 --- a/gcp_find.py +++ b/gcp_find.py @@ -223,7 +223,7 @@ def gcp_output(self): return if self.args.type == 'ODM' and self.args.epsg is not None: # write epsg code to the beginning of the output - foutput.write('EPSG:{self.args.epsg}\n') + foutput.write(f'EPSG:{self.args.epsg}\n') for gcp in self.gcps: j = gcp[3]