def getNextMangaPath(self): (prevPath, nextPath) = self.getNeighborPaths() if nextPath: containerModule.testPath(nextPath) return nextPath else: print("manga: next path uses unsupported format:\n%s" % nextPath) return False return nextPath
def getNextMangaPath(self): (prevPath,nextPath) = self.getNeighborPaths() if nextPath: containerModule.testPath(nextPath) return nextPath else: print "manga: next path uses unsupported format:\n%s" % nextPath return False return nextPath
def getPrevMangaPath(self): (prevPath,nextPath) = self.getNeighborPaths() if prevPath: containerModule.testPath(prevPath) return prevPath else: print "manga: previous path uses unsupported format:\n%s" % prevPath return False return prevPath
def getPrevMangaPath(self): (prevPath, nextPath) = self.getNeighborPaths() if prevPath: containerModule.testPath(prevPath) return prevPath else: print("manga: previous path uses unsupported format:\n%s" % prevPath) return False return prevPath