Movie: fix get_plot debug string
authorPhilipp Zabel <philipp.zabel@gmail.com>
Sun, 8 Aug 2010 13:16:43 +0000 (15:16 +0200)
committerPhilipp Zabel <philipp.zabel@gmail.com>
Sun, 8 Aug 2010 13:58:40 +0000 (15:58 +0200)
Add a missing newline.

src/movie.vala

index 1751a31..2575c5e 100644 (file)
@@ -42,7 +42,7 @@ public class Movie : Object {
        }
 
        public virtual string get_plot () {
-               print ("get_plot(%s)", title);
+               print ("get_plot (%s)\n", title);
                return "";
        }
 }