summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--codegen/docextract.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/codegen/docextract.py b/codegen/docextract.py
index eff8c5e..06a08a3 100644
--- a/codegen/docextract.py
+++ b/codegen/docextract.py
@@ -422,10 +422,10 @@ def parse_tmpl(fp, doc_dict):
cur_doc = None # don't worry about unused params.
elif cur_doc:
if line[:10] == '@Returns: ':
- if string.strip(line[10:]):
+ if line[10:].strip():
cur_doc.append_to_return(line[10:])
elif line[0] == '@':
- pos = string.find(line, ':')
+ pos = line.find(':')
if pos >= 0:
cur_doc.append_to_named_param(line[1:pos], line[pos+1:])
else: