Merge lp:~elopio/autopilot/fix1173404-obect_typo into lp:autopilot

Proposed by Leo Arias
Status: Merged
Approved by: Thomi Richards
Approved revision: 174
Merged at revision: 175
Proposed branch: lp:~elopio/autopilot/fix1173404-obect_typo
Merge into: lp:autopilot
Diff against target: 26 lines (+3/-3)
1 file modified
autopilot/introspection/__init__.py (+3/-3)
To merge this branch: bzr merge lp:~elopio/autopilot/fix1173404-obect_typo
Reviewer Review Type Date Requested Status
Thomi Richards (community) Approve
PS Jenkins bot continuous-integration Approve
Review via email: mp+161248@code.launchpad.net

Commit message

Fixed typo: AutopilotProxyObect -> AutopilotProxyObject.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Thomi Richards (thomir-deactivatedaccount) wrote :

LGTM, Thanks!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'autopilot/introspection/__init__.py'
--- autopilot/introspection/__init__.py 2013-04-26 00:05:16 +0000
+++ autopilot/introspection/__init__.py 2013-04-26 22:44:23 +0000
@@ -242,7 +242,7 @@
242242
243 """243 """
244244
245 bases = [ApplicationProxyObect]245 bases = [ApplicationProxyObject]
246246
247 dbus_object = get_session_bus().get_object(service_name, obj_path)247 dbus_object = get_session_bus().get_object(service_name, obj_path)
248 introspection_iface = dbus.Interface(dbus_object, DBUS_INTROSPECTION_IFACE)248 introspection_iface = dbus.Interface(dbus_object, DBUS_INTROSPECTION_IFACE)
@@ -265,11 +265,11 @@
265 return get_classname_from_path(object_path), object_state265 return get_classname_from_path(object_path), object_state
266266
267267
268class ApplicationProxyObect(DBusIntrospectionObject):268class ApplicationProxyObject(DBusIntrospectionObject):
269 """A class that better supports query data from an application."""269 """A class that better supports query data from an application."""
270270
271 def __init__(self, state, path):271 def __init__(self, state, path):
272 super(ApplicationProxyObect, self).__init__(state, path)272 super(ApplicationProxyObject, self).__init__(state, path)
273 self._process = None273 self._process = None
274274
275 def set_process(self, process):275 def set_process(self, process):

Subscribers

People subscribed via source and target branches