Skip to content

Commit

Permalink
Fixed typo. This refs #4303
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanBilheux committed Feb 15, 2012
1 parent 0802ca1 commit c37ab27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def to_xml(self):
xml += "<norm_flag>%s</norm_flag>\n" % str(self.NormFlag)
xml += "<norm_x_range_flag>%s</norm_x_range_flag>\n" % str(self.norm_x_range_flag)
xml += "<norm_x_max>%s</norm_x_max>\n" % str(self.norm_x_range[1])
xml += "<norm_x_min>%s</norm_x_min>\n" % str(self.norm_x_range[2])
xml += "<norm_x_min>%s</norm_x_min>\n" % str(self.norm_x_range[0])

xml += "<norm_from_peak_pixels>%s</norm_from_peak_pixels>\n" % str(self.NormPeakPixels[0])
xml += "<norm_to_peak_pixels>%s</norm_to_peak_pixels>\n" % str(self.NormPeakPixels[1])
Expand Down

0 comments on commit c37ab27

Please sign in to comment.