Merge lp:~ralsina/ubuntuone-client/fix-810521 into lp:ubuntuone-client

Proposed by Roberto Alsina
Status: Merged
Approved by: Roberto Alsina
Approved revision: 1058
Merged at revision: 1058
Proposed branch: lp:~ralsina/ubuntuone-client/fix-810521
Merge into: lp:ubuntuone-client
Diff against target: 18 lines
To merge this branch: bzr merge lp:~ralsina/ubuntuone-client/fix-810521
Reviewer Review Type Date Requested Status
Manuel de la Peña (community) Approve
Review via email: mp+68435@code.launchpad.net

Commit message

Fix signal names.

Description of the change

Fix signal names.

To post a comment you must log in.
Revision history for this message
Manuel de la Peña (mandel) wrote :

Approve as code review, but I was not able to run the tests :(

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'ubuntuone/platform/windows/ipc.py'
2--- ubuntuone/platform/windows/ipc.py 2011-07-14 23:36:26 +0000
3+++ ubuntuone/platform/windows/ipc.py 2011-07-19 17:33:37 +0000
4@@ -294,12 +294,12 @@
5 def emit_requestqueue_added(self, op_name, op_id, data):
6 """Emit RequestQueueAdded."""
7 sanitize_dict(data)
8- self.emit_signal('on_equest_queue_added', op_name, str(op_id), data)
9+ self.emit_signal('on_request_queue_added', op_name, str(op_id), data)
10
11 def emit_requestqueue_removed(self, op_name, op_id, data):
12 """Emit RequestQueueRemoved."""
13 sanitize_dict(data)
14- self.emit_signal('request_queue_removed', op_name, str(op_id), data)
15+ self.emit_signal('on_request_queue_removed', op_name, str(op_id), data)
16
17
18 class Events(Referenceable, SignalBroadcaster):
19 """The events of the system translated to ipc signals."""

Subscribers

People subscribed via source and target branches