diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2023-09-28 19:28:12 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2023-09-28 19:28:12 +0200 |
commit | 554374bb368eff5f40648901971972409dea2e11 (patch) | |
tree | 1452b6f4d4ffdd95fc696aace8962411ef6a4caa | |
parent | fbaac5321e741324e1e6aa8ed8475541a2ed0268 (diff) |
Remove double call to Path.expanduser().
-rwxr-xr-x | gis-observation-map | 2 |
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 |