diff --git a/DIDLLite.py b/DIDLLite.py index 7aae18d..98ce044 100644 --- a/DIDLLite.py +++ b/DIDLLite.py @@ -136,7 +136,7 @@ class Object(object): self.title) def checkUpdate(self): - return self + pass def toElement(self): diff --git a/FSStorage.py b/FSStorage.py index 6d2225d..a04f15a 100644 --- a/FSStorage.py +++ b/FSStorage.py @@ -65,7 +65,7 @@ class FSObject(object): try: nstat = os.stat(self.FSpath) if statcmp(self.pstat, nstat): - return self + return self.pstat = nstat self.doUpdate() @@ -74,12 +74,10 @@ class FSObject(object): if x.errno in (errno.ENOENT, errno.ENOTDIR, errno.EPERM, ): # We can't access it anymore, delete it self.cd.delItem(self.id) - return None + return else: raise - return self - def doUpdate(self): raise NotImplementedError diff --git a/README b/README index ce43729..ed3977c 100644 --- a/README +++ b/README @@ -78,6 +78,8 @@ v0.x: Made it a bit closer to a real twisted proejct, in the process, pymediaserv looks more like a normal program. It allows you to override the media path and title of the server. + Minor change to checkUpdate API, we didn't use the return value, so + don't return one anymore. v0.5: Support multiple SSDP servers on the same box. diff --git a/ZipStorage.py b/ZipStorage.py index 649268a..373bedb 100644 --- a/ZipStorage.py +++ b/ZipStorage.py @@ -159,7 +159,7 @@ class ZipItem: def checkUpdate(self): self.doUpdate() - return self.zo.checkUpdate() + self.zo.checkUpdate() class ZipFile(ZipItem, Item): def __init__(self, *args, **kwargs): diff --git a/dvd.py b/dvd.py index ffe9e0d..33bca38 100644 --- a/dvd.py +++ b/dvd.py @@ -141,7 +141,6 @@ class DVDTitle(StorageFolder): def checkUpdate(self): self.doUpdate() #return self.dvddisc.checkUpdate() - return self def doUpdate(self): doupdate = False diff --git a/shoutcast.py b/shoutcast.py index 81c097d..8fbaba0 100644 --- a/shoutcast.py +++ b/shoutcast.py @@ -321,7 +321,6 @@ class ShoutGenre(MusicGenre): def checkUpdate(self): self.doUpdate() - return self def doUpdate(self): #traceback.print_stack(file=log.logfile) @@ -369,7 +368,6 @@ class ShoutCast(Container): def checkUpdate(self): self.doUpdate() - return self def doUpdate(self): #traceback.print_stack(file=log.logfile)