~canonical-platform-qa/autopilot/fix-cpo-having-different-name-1337004

« back to all changes in this revision

Viewing changes to autopilot/introspection/_object_registry.py

  • Committer: Tarmac
  • Author(s): Christopher Lee
  • Date: 2015-02-26 02:28:11 UTC
  • mfrom: (542.1.2 remove-ext-class-for-now)
  • Revision ID: tarmac-20150226022811-ijyb11154odr2c5c
Revert previous fix to unblock landing of other fixes and documentation updates.

Approved by PS Jenkins bot, Thomi Richards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
            )
174
174
        )
175
175
    if len(possible_classes) == 1:
176
 
        extended_proxy_bases = _get_proxy_bases_for_id(object_id)
177
 
        if extended_proxy_bases:
178
 
            possible_classes[0].__bases__ = extended_proxy_bases
179
176
        return possible_classes[0]
180
177
    return None
181
178