summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/_ext/px_xlator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/_ext/px_xlator.py b/doc/_ext/px_xlator.py
index f4ddc101..98929e9c 100644
--- a/doc/_ext/px_xlator.py
+++ b/doc/_ext/px_xlator.py
@@ -42,7 +42,7 @@ class PxTranslator(BaseHtmlXlator):
if self.history:
self.body.append("<history>\n")
for hist in self.history:
- when, what = hist.split(',')
+ when, what = hist.split(',', 1)
self.body.append("<what when='%s'>%s</what>\n" % (when, self.encode(what.strip())))
self.body.append("</history>\n")