--- mythplugins-0.22.0~trunk21742/mythvideo/mythvideo/scripts/jamu.py	2009-09-07 10:11:24.000000000 -0500
+++ jamu.py	2009-09-09 19:00:47.000000000 -0500
@@ -4355,13 +4355,10 @@
 		# Prossess all TV shows and Movies
 		for program in programs:
 			program['need'] = False		# Initalize that this program does not need graphic(s) downloaded
-			if program['subtitle']:				
+			if program['subtitle'] or not program.has_key('originalairdate') or program['originalairdate'] == u'0000':
 				graphics_name = program['title']
 			else:
-				if program['originalairdate'] == u'0000':
-					graphics_name = program['title']
-				else:
-					graphics_name = "%s (%s)" % (program['title'], program['originalairdate'])
+				graphics_name = "%s (%s)" % (program['title'], program['originalairdate'])
 			# Search for graphics that are already downloaded
 			for directory in graphicsDirectories.keys():
 				if directory == 'screenshot':	# There is no downloading of screenshots required
@@ -4455,7 +4452,7 @@
 		if len(programs):
 			sys.stdout.write(u'\n-------------Scheduled & Recorded----------\n' )
 			for program in programs:
-				if program['subtitle']:
+				if program['subtitle'] or not program.has_key('originalairdate'):
 					sys.stdout.write(u'%s\n' % (program['title'], ))
 				else:
 					sys.stdout.write(u'%s\n' % ("%s (%s)" % (program['title'], program['originalairdate'])))
