mail clients and indenting

I hate it when this happens.... a line got indented that wasn't
supposed to be..

in my previous message change...

    self.imageType = self.getImageType(image)
    self.pic = wx.Image(self.image,
          file_types[self.imageType]).ConvertToBitmap()
          self.display_pic = wx.StaticBitmap(self, -1, self.pic,
          (10, 10),
          (self.pic.GetWidth(), self.pic.GetHeight()))

to...

    self.imageType = self.getImageType(image)
    self.pic = wx.Image(self.image,
          file_types[self.imageType]).ConvertToBitmap()
    self.display_pic = wx.StaticBitmap(self, -1, self.pic,
          (10, 10), (self.pic.GetWidth(), self.pic.GetHeight()))

sorry about that... :frowning: