File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Report](https://paperpile.com/shared/TUqWjt).
25
25
26
26
``` {raw} html
27
27
<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">
29
29
Your browser does not support the video tag.
30
30
</video>
31
31
<!--<img src="../_static/ShoulderCloseupBack.jpg" alt="Smiley face" width="45%">-->
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ def tagged_commit():
114
114
pygments_style = "AnyScript"
115
115
116
116
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 ):
118
118
raise ValueError ("Wrong format for AMS version, environment variable" )
119
119
ams_version_short = ams_version .rpartition ("." )[0 ]
120
120
ams_version_x = ams_version_short + ".x"
@@ -131,7 +131,7 @@ def tagged_commit():
131
131
raise Exception ("Could not parse AMMR version" )
132
132
133
133
134
- if not re .match ("^\d\.\d\.\d" , ammr_version ):
134
+ if not re .match (r "^\d\.\d\.\d" , ammr_version ):
135
135
raise ValueError ("Wrong format for AMMR version, environment variable" )
136
136
137
137
ammr_version_short = ammr_version .rpartition ("." )[0 ]
You can’t perform that action at this time.
0 commit comments