From 554374bb368eff5f40648901971972409dea2e11 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Thu, 28 Sep 2023 19:28:12 +0200 Subject: Remove double call to Path.expanduser(). --- gis-observation-map | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gis-observation-map b/gis-observation-map index c1ac22e..96eacfa 100755 --- a/gis-observation-map +++ b/gis-observation-map @@ -824,7 +824,7 @@ if args.topo_basedir is not None and projectInstance is not None: continue if args.project_home is not None: - l = args.project_home.expanduser().joinpath(topo) + l = args.project_home.joinpath(topo) l.symlink_to(d, target_is_directory=True) d = l -- cgit v1.2.3