We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1692ef7 commit b28276fCopy full SHA for b28276f
tools/deploy/deploy.py
@@ -84,7 +84,7 @@ def __init__(self, relDic):
84
self.tail = self.TailText
85
86
class RelLog(Release):
87
- HeaderText = "/**\n\page changelog Release Notes\n\n\\tableofcontents\n\n"
+ HeaderText = "/**\n\\page changelog Release Notes\n\n\\tableofcontents\n\n"
88
TailText = "\n*/"
89
MsgType = {"new": '\\new',
90
"bugfix": '\\bugfix',
@@ -99,7 +99,7 @@ def __init__(self, relDic):
99
100
def section(self):
101
verCode = self.version.split('.')
102
- line = "\section rkhVer_"
+ line = "\\section rkhVer_"
103
line += "{0:s}_{1:s}_{2:s} ".format(verCode[0], verCode[1], verCode[2])
104
line += "Version {}\n".format(self.version)
105
return line
0 commit comments