Skip to content

Commit

Permalink
bug 8528: local variable 'body' referenced before assignment
Browse files Browse the repository at this point in the history
bug report and fix the day of the release...
  • Loading branch information
SNoiraud authored and romjerome committed May 2, 2015
1 parent 58d30e6 commit 32e426b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/plugins/webreport/NarrativeWeb.py
Original file line number Diff line number Diff line change
Expand Up @@ -5064,14 +5064,14 @@ def __init__(self, report, title):
else:
tcell += " "

# clear line for proper styling
# create footer section
footer = self.write_footer()
body += (fullclear, footer)

# send page out for processing
# and close the file
self.XHTMLWriter(downloadpage, of, sio)
# clear line for proper styling
# create footer section
footer = self.write_footer()
body += (fullclear, footer)

# send page out for processing
# and close the file
self.XHTMLWriter(downloadpage, of, sio)

class ContactPage(BasePage):
def __init__(self, report, title):
Expand Down

0 comments on commit 32e426b

Please sign in to comment.