From 005e8f235320cd8086bbe76e48498038d4839e6e Mon Sep 17 00:00:00 2001
From: im85288 <ianmalcolmmclaughlin@gmail.com>
Date: Tue, 29 Sep 2015 14:44:27 +0100
Subject: [PATCH] rotten tomatoes removed

---
 service.py | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/service.py b/service.py
index a5658b97..76b98270 100644
--- a/service.py
+++ b/service.py
@@ -29,7 +29,6 @@ from UserClient import UserClient
 from Player import Player
 from WebSocketClient import WebSocketThread
 from LibrarySync import LibrarySync
-from LibraryMonitor import LibraryMonitor
 
 #################################################################################################
 
@@ -114,10 +113,6 @@ class Service():
         player = Player()
         ws = WebSocketThread()
         library = LibrarySync()
-        librarymonitor = LibraryMonitor()
-        xbmc.log("START LIBRARY MONITOR")
-        librarymonitor.start()
-
         # Sync and progress report
         lastProgressUpdate = datetime.today()
 
@@ -285,9 +280,6 @@ class Service():
         if (self.newUserClient is not None):
             user.stopClient()
 
-        xbmc.log("STOP LIBRARY MONITOR")
-        librarymonitor.stop()
-
         self.logMsg("======== STOP %s ========" % self.addonName, 0)
 
 # Start the service