mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-02 01:20:17 +02:00
Fix lone period bug in docs parser.
This commit is contained in:
@@ -82,8 +82,8 @@ def get_comment_block(lines, prefix, blanks=1):
|
|||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
blankcnt = 0
|
blankcnt = 0
|
||||||
if line == ".":
|
if line.rstrip() == '.':
|
||||||
line == ""
|
line = "\n"
|
||||||
out.append(line.rstrip())
|
out.append(line.rstrip())
|
||||||
return (lines, out)
|
return (lines, out)
|
||||||
|
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,325];
|
BOSL_VERSION = [2,0,326];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
Reference in New Issue
Block a user