Fixed module detection in gen_javadoc.py script
This commit is contained in:
parent
fc7219d1db
commit
e22045502d
@ -28,7 +28,7 @@ class JavadocGenerator(object):
|
|||||||
def document(self, infile, outfile):
|
def document(self, infile, outfile):
|
||||||
inf = open(infile, "rt")
|
inf = open(infile, "rt")
|
||||||
outf = open(outfile, "wt")
|
outf = open(outfile, "wt")
|
||||||
module = os.path.splitext(os.path.basename(infile))[0]
|
module = os.path.splitext(os.path.basename(infile))[0].split("+")[0]
|
||||||
if module not in allmodules:
|
if module not in allmodules:
|
||||||
module = "unknown"
|
module = "unknown"
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user