chiark / gitweb /
Refactor message printing
[stgit] / stgit / commands / unapplied.py
index cbac0524e11f6ce8c63009695c91419d4d97e79c..0d330a1d49f903cc491718a6f091f7290dd5d492 100644 (file)
@@ -46,7 +46,7 @@ def func(parser, options, args):
     unapplied = crt_series.get_unapplied()
 
     if options.count:
-        print len(unapplied)
+        out.stdout(len(unapplied))
     else:
         for p in unapplied:
-            print p
+            out.stdout(p)