]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
doxy: correctly pick parsed date from regexp
authordberzano <dario.berzano@cern.ch>
Wed, 7 Jan 2015 10:39:30 +0000 (11:39 +0100)
committerdberzano <dario.berzano@cern.ch>
Fri, 9 Jan 2015 15:01:09 +0000 (16:01 +0100)
doxygen/thtml2doxy.py

index 59b1511e9d16024672eb1200cc7a260cdacf8294..d54c6605fc150bb4d9106d09ab1639dc24770665 100755 (executable)
@@ -358,7 +358,7 @@ def comment_classdesc(filename, comments):
             author = mauthor.group(1)
             if date is None:
               # Date specified in the standalone \date field has priority
-              date = mauthor.group(2)
+              date = mauthor.group(3)
             append = False
           else:
             mdate = re.search(redate, mcomm.group(1))