diff --git a/CHANGES.md b/CHANGES.md
index 3e56401553a28072196827d8ba4f4644bd05e1c3..484e45a99034546e2c5b1d93d72fff45c2f328ad 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -47,6 +47,7 @@
 * Add handler for when Trakt returns no results for Add Show/Add Trending Show page
 * Fix image links when anchor child images are not found at Trakt on Add Show/Add Trending Show page
 * Add image to be used when Trakt posters are void on Add Show/Add Trending Show page
+* Fix growl registration not sending sickrage update notification registration.
 
 [develop changelog]
 * Change improve display of progress bars in the Downloads columns of the show list page
diff --git a/sickbeard/notifiers/growl.py b/sickbeard/notifiers/growl.py
index 47ea6ef378c32539e7b5d1d67d08973fdd5e5467..b1c3be86ac048d00834e5494291f65b3e447b66c 100644
--- a/sickbeard/notifiers/growl.py
+++ b/sickbeard/notifiers/growl.py
@@ -179,7 +179,8 @@ class GrowlNotifier:
         register.add_notification('Test', True)
         register.add_notification(common.notifyStrings[common.NOTIFY_SNATCH], True)
         register.add_notification(common.notifyStrings[common.NOTIFY_DOWNLOAD], True)
-
+        register.add_notification(common.notifyStrings[common.NOTIFY_GIT_UPDATE], True)
+        
         if opts['password']:
             register.set_password(opts['password'])