Comment 4 for bug 502051

Revision history for this message
John Ferlito (johnf-inodes) wrote : Re: run-parts: /etc/cron.hourly/mythvideo exited with return code 1

This is an upstream problem. The code uses sys.exit(True) where is should be using False and vice vera.

eg
                # Check if this is a Scheduled and Recorded graphics download request
                if self.config['mythtv_watched']:
                        self._downloadScheduledRecordedGraphics()
                        sys.exit(True)

is using True to indicate success. Switching the line above solves the problem for the cronjob but the whole code base needs a review.