mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +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
|
||||
else:
|
||||
blankcnt = 0
|
||||
if line == ".":
|
||||
line == ""
|
||||
if line.rstrip() == '.':
|
||||
line = "\n"
|
||||
out.append(line.rstrip())
|
||||
return (lines, out)
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
BOSL_VERSION = [2,0,325];
|
||||
BOSL_VERSION = [2,0,326];
|
||||
|
||||
|
||||
// Section: BOSL Library Version Functions
|
||||
|
|
Loading…
Reference in a new issue