From b72bc06e448328e13c41c57d2b7ff1b7f7c031df Mon Sep 17 00:00:00 2001 From: Ondrej Pesek Date: Sat, 7 Dec 2024 18:17:28 +0100 Subject: [PATCH] v.in.wfs: remove an extra print copying a debug message i suppose that as the same was printed and debug-messaged, it should be just debug message * also, change the debug message to b more understandable --- scripts/v.in.wfs/v.in.wfs.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/v.in.wfs/v.in.wfs.py b/scripts/v.in.wfs/v.in.wfs.py index 9f53840edcf..2949949ad50 100755 --- a/scripts/v.in.wfs/v.in.wfs.py +++ b/scripts/v.in.wfs/v.in.wfs.py @@ -154,12 +154,10 @@ def main(): if flags["l"]: wfs_url = options["url"] + "REQUEST=GetCapabilities&SERVICE=WFS" - print(wfs_url) - tmp = grass.tempfile() tmpxml = tmp + ".xml" - grass.debug(wfs_url) + grass.debug("The request URL: {wfs_url}") # Set user and password if given if options["username"] and options["password"]: