~dobey/ubuntu-sso-client/twisted-14-fixes

« back to all changes in this revision

Viewing changes to ubuntu_sso/qt/email_verification_page.py

  • Committer: Tarmac
  • Author(s): Rodney Dawes, Michael McCracken
  • Date: 2012-12-14 22:33:04 UTC
  • mfrom: (1011.1.10 new-pep8)
  • Revision ID: tarmac-20121214223304-z7f8le54bt2mbh1e
Ignore some new pep8 errors, and update code to fix others.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
        """The signals to connect to the backend."""
67
67
        result = {
68
68
            'EmailValidated':
69
 
             self._filter_by_app_name(self.on_email_validated),
 
69
                self._filter_by_app_name(self.on_email_validated),
70
70
            'EmailValidationError':
71
 
             self._filter_by_app_name(self.on_email_validation_error),
 
71
                self._filter_by_app_name(self.on_email_validation_error),
72
72
        }
73
73
        return result
74
74