mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 09:49:45 +00:00
Fix lone period bug in docs parser.
This commit is contained in:
parent
6168c8bb6b
commit
02789c91d9
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue