[hamster-applet] typos (ressurect -> resurrect). patch by Adam Przywecki



commit 362d536f8b9bc175909c9ae8d607ae94ef0bb132
Author: Toms Bauģis <toms baugis gmail com>
Date:   Sat May 21 16:58:58 2011 +0300

    typos (ressurect -> resurrect). patch by Adam Przywecki

 src/hamster-time-tracker             |    2 +-
 src/hamster/applet.py                |    2 +-
 src/hamster/client.py                |    2 +-
 src/hamster/widgets/activityentry.py |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/hamster-time-tracker b/src/hamster-time-tracker
index f57ebc4..61e724e 100755
--- a/src/hamster-time-tracker
+++ b/src/hamster-time-tracker
@@ -341,7 +341,7 @@ class ProjectHamster(object):
 
                     activity = runtime.storage.get_activity_by_name(fact.activity,
                                                                     category_id,
-                                                                    ressurect = False)
+                                                                    resurrect = False)
                     if activity:
                         # we need dict below
                         activity = dict(name = activity.name,
diff --git a/src/hamster/applet.py b/src/hamster/applet.py
index b6dd251..1f9b817 100755
--- a/src/hamster/applet.py
+++ b/src/hamster/applet.py
@@ -607,7 +607,7 @@ class HamsterApplet(object):
 
                     activity = runtime.storage.get_activity_by_name(fact.activity,
                                                                     category_id,
-                                                                    ressurect = False)
+                                                                    resurrect = False)
                     if activity:
                         # we need dict below
                         activity = dict(name = activity.activity,
diff --git a/src/hamster/client.py b/src/hamster/client.py
index 1473f36..18ab78d 100644
--- a/src/hamster/client.py
+++ b/src/hamster/client.py
@@ -237,7 +237,7 @@ class Storage(gobject.GObject):
     def get_activity_by_name(self, activity, category_id = None, resurrect = True):
         """returns activity dict by name and optionally filtering by category.
            if activity is found but is marked as deleted, it will be resurrected
-           unless told otherise in the resurrect param
+           unless told otherwise in the resurrect param
         """
         category_id = category_id or 0
         return self.conn.GetActivityByName(activity, category_id, resurrect)
diff --git a/src/hamster/widgets/activityentry.py b/src/hamster/widgets/activityentry.py
index 74888ac..7e0389b 100644
--- a/src/hamster/widgets/activityentry.py
+++ b/src/hamster/widgets/activityentry.py
@@ -107,7 +107,7 @@ class ActivityEntry(gtk.Entry):
 
         # see if entered text matches something from the outer suggestions
         # only consequence of if it does is that it will not attempt to
-        # ressurect the activity if it's deleted (hidden)
+        # resurrect the activity if it's deleted (hidden)
         # thus avoiding polluting our local suggestions
         external_names = set()
         for activity in self.external_activities:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]