X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/0f92637c75d03080d43a9b8a95527660d61d67a5..27ac2b7eee3cc39e29c470cd5b5889e93091d9be:/stgit/commands/unapplied.py diff --git a/stgit/commands/unapplied.py b/stgit/commands/unapplied.py index cbac052..0d330a1 100644 --- a/stgit/commands/unapplied.py +++ b/stgit/commands/unapplied.py @@ -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)