A litte bit of shh
This commit is contained in:
parent
600bcc3a16
commit
ec3b85046e
1 changed files with 17 additions and 13 deletions
|
@ -3,7 +3,8 @@ def parse_template(title, template)
|
|||
|
||||
fields = {}
|
||||
|
||||
fields_string = @wiki.article(title).text.scan(template_re)[0][0]
|
||||
if (scanned = @wiki.article(title).text.scan(template_re)) != []
|
||||
fields_string = scanned[0][0]
|
||||
|
||||
inlink = 0
|
||||
field = ""
|
||||
|
@ -19,6 +20,9 @@ def parse_template(title, template)
|
|||
field += c
|
||||
end
|
||||
end
|
||||
else
|
||||
$stderr.print "Template #{template} not found in #{title}!"
|
||||
end
|
||||
|
||||
fields
|
||||
end
|
||||
|
|
Reference in a new issue