Index: imdbpy.py
===================================================================
--- imdbpy.py	(revision 22954)
+++ imdbpy.py	(working copy)
@@ -327,7 +327,10 @@
 		shortest_found = None
 		#print "%d plots found" % len(plots)
 		for plot in plots:
-			text = plot.split("::")[1]
+			if plot.startswith("Outline"):
+				test = plot.split("::")[1]
+			else:
+				text = plot.split("::")[0]
 			if shortest_found == None or len(text) < len(shortest_found):
 				shortest_found = text
 		metadata.plot = shortest_found
