Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-11-19 22:38:45 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-11-19 22:38:45 (GMT)
commit79349369000d53741a8874929044af4b6b48f2f4 (patch)
tree03a90d1ca74c8a6565f289d1404d289b74ac0a2b
parent0a427dbd5acbcfee8874c30fb0a1c16473f1b93d (diff)
LP 448319 : Clarifying comments on functions
-rw-r--r--tutorius/TProbe.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tutorius/TProbe.py b/tutorius/TProbe.py
index d29ddda..3a57161 100644
--- a/tutorius/TProbe.py
+++ b/tutorius/TProbe.py
@@ -319,7 +319,8 @@ class ProbeProxy:
def update(self, action_address, newaction, block=False):
"""
Update an already installed action's properties and run it again
- @param action Action to update
+ @param action_address The address of the action to update. This is
+ provided by the install callback method.
@param newaction Action to update it with
@param block Force a synchroneous dbus call if True
@return None
@@ -333,7 +334,8 @@ class ProbeProxy:
def uninstall(self, action_address, block=False):
"""
Uninstall an installed action
- @param action Action to uninstall
+ @param action_address The address of the action to uninstall. This address was given
+ on action installation
@param block Force a synchroneous dbus call if True
"""
for (this_action, this_address) in self._actions.items():