* src/docgen/AsciiDoc.py (reformat_para): Correctly check for
empty paragraph. svn: r3825
This commit is contained in:
@@ -53,7 +53,7 @@ _WIDTH_IN_CHARS = 72
|
||||
#
|
||||
#------------------------------------------------------------------------
|
||||
def reformat_para(para='',left=0,right=72,just=LEFT,right_pad=0):
|
||||
if not para:
|
||||
if not para.strip():
|
||||
return "\n"
|
||||
words = para.split()
|
||||
lines = []
|
||||
|
||||
Reference in New Issue
Block a user