~dobey/ubuntu-sso-client/update-4-2

« back to all changes in this revision

Viewing changes to ubuntu_sso/qt/forgotten_password_page.py

  • Committer: Rodney Dawes
  • Date: 2013-01-09 22:23:57 UTC
  • mfrom: (1011.1.1 update-4-2)
  • Revision ID: rodney.dawes@canonical.com-20130109222357-3jqwkv44hzger1vl
[Mike McCracken]

    - Add util func returning translation function for platform/pyversion/frozen status. (LP: #1074116)

[Rodney Dawes]

    - Ignore some new pep8 errors, and update code to fix others.

[Brian Curtin]

    - Use states from networkstates instead of re-defining them locally.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
        """The signals to connect to the backend."""
62
62
        result = {
63
63
            'PasswordResetTokenSent':
64
 
             self._filter_by_app_name(self.on_password_reset_token_sent),
 
64
                self._filter_by_app_name(self.on_password_reset_token_sent),
65
65
            'PasswordResetError':
66
 
             self._filter_by_app_name(self.on_password_reset_error),
 
66
                self._filter_by_app_name(self.on_password_reset_error),
67
67
        }
68
68
        return result
69
69