From 40a82d1b9d79857332ca8a77024fc4287a1d7a1c Mon Sep 17 00:00:00 2001 From: Sean Schneeweiss Date: Wed, 7 Apr 2021 13:25:56 +0200 Subject: [PATCH] Capitalize End Site in BVH file --- pymo/writers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymo/writers.py b/pymo/writers.py index 834ef63..b359da8 100644 --- a/pymo/writers.py +++ b/pymo/writers.py @@ -30,7 +30,7 @@ def _printJoint(self, X, joint, tab, ofile): elif len(X.skeleton[joint]['children']) > 0: ofile.write('%sJOINT %s\n'%('\t'*(tab), joint)) else: - ofile.write('%sEnd site\n'%('\t'*(tab))) + ofile.write('%sEnd Site\n'%('\t'*(tab))) ofile.write('%s{\n'%('\t'*(tab)))