We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ed233c commit 39c2844Copy full SHA for 39c2844
docs/CameraSupport.rst
@@ -82,7 +82,7 @@ Camera Support
82
models = OrderedDict(sorted(models.items()))
83
for model, content in models.items():
84
# Leaf cameras have aliases in their model name, we need to split them here
85
- aliases = model.split("/")
+ aliases = model.split("/", 1) if make == "Leaf" else model
86
model_name = aliases[0]
87
88
# Concatenate official aliases with the ones we found above
0 commit comments