Skip to content

Commit b862d44

Browse files
committed
Get .tif as well as .tiff
1 parent 27708e2 commit b862d44

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/murfey/server/api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1630,6 +1630,8 @@ async def gather_upstream_tiffs(visit_name: str):
16301630
for tiff_dir in tiff_dirs:
16311631
for f in tiff_dir.glob("**/*.tiff"):
16321632
upstream_tiff_paths.append(str(f.relative_to(tiff_dir)))
1633+
for f in tiff_dir.glob("**/*.tif"):
1634+
upstream_tiff_paths.append(str(f.relative_to(tiff_dir)))
16331635
return upstream_tiff_paths
16341636

16351637

0 commit comments

Comments
 (0)