Skip to content

Commit ec2eaae

Browse files
authored
docs: Fixed missing video on arm doc page (#987)
* Fix misspelled filename * Fixed warnings about string escapes
1 parent 08da1a4 commit ec2eaae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Docs/body/shoulder_arm_model.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Report](https://paperpile.com/shared/TUqWjt).
2525

2626
```{raw} html
2727
<video width="45%" style="display:block; margin: 0 auto;" controls autoplay loop>
28-
<source src="../_static/ShouderArm_rotalting_model.mp4" type="video/mp4">
28+
<source src="../_static/ShoulderArm_rotating_model.mp4" type="video/mp4">
2929
Your browser does not support the video tag.
3030
</video>
3131
<!--<img src="../_static/ShoulderCloseupBack.jpg" alt="Smiley face" width="45%">-->

Docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def tagged_commit():
114114
pygments_style = "AnyScript"
115115

116116
ams_version = os.environ.get("AMS_VERSION", "8.0.4")
117-
if not re.match("^\d\.\d\.\d", ams_version):
117+
if not re.match(r"^\d\.\d\.\d", ams_version):
118118
raise ValueError("Wrong format for AMS version, environment variable")
119119
ams_version_short = ams_version.rpartition(".")[0]
120120
ams_version_x = ams_version_short + ".x"
@@ -131,7 +131,7 @@ def tagged_commit():
131131
raise Exception("Could not parse AMMR version")
132132

133133

134-
if not re.match("^\d\.\d\.\d", ammr_version):
134+
if not re.match(r"^\d\.\d\.\d", ammr_version):
135135
raise ValueError("Wrong format for AMMR version, environment variable")
136136

137137
ammr_version_short = ammr_version.rpartition(".")[0]

0 commit comments

Comments
 (0)