Skip to content

Commit eba1a00

Browse files
authoredOct 3, 2023
resolve wildcard in cli since created folder will lead to an error if wildcards are not solved before (#150)
1 parent 54d5f8e commit eba1a00

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎stitching/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .stitcher import AffineStitcher, Stitcher # noqa: F401
22

3-
__version__ = "0.5.0"
3+
__version__ = "0.5.1"

‎stitching/cli/stitch.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@ def main():
286286
args_dict = vars(args)
287287

288288
# Extract In- and Output
289-
images = args_dict.pop("images")
290-
feature_masks = args_dict.pop("feature_masks")
289+
images = Images.resolve_wildcards(args_dict.pop("images"))
290+
feature_masks = Images.resolve_wildcards(args_dict.pop("feature_masks"))
291291

292292
verbose = args_dict.pop("verbose")
293293
verbose_dir = args_dict.pop("verbose_dir")

0 commit comments

Comments
 (0)
Failed to load comments.