aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2023-09-28 19:28:12 +0200
committerGuilhem Moulin <guilhem@fripost.org>2023-09-28 19:28:12 +0200
commit554374bb368eff5f40648901971972409dea2e11 (patch)
tree1452b6f4d4ffdd95fc696aace8962411ef6a4caa
parentfbaac5321e741324e1e6aa8ed8475541a2ed0268 (diff)
Remove double call to Path.expanduser().
-rwxr-xr-xgis-observation-map2
1 files changed, 1 insertions, 1 deletions
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