X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/0f92637c75d03080d43a9b8a95527660d61d67a5..27ac2b7eee3cc39e29c470cd5b5889e93091d9be:/stgit/commands/applied.py diff --git a/stgit/commands/applied.py b/stgit/commands/applied.py index f131d62..0925de0 100644 --- a/stgit/commands/applied.py +++ b/stgit/commands/applied.py @@ -47,7 +47,7 @@ def func(parser, options, args): applied = crt_series.get_applied() if options.count: - print len(applied) + out.stdout(len(applied)) else: for p in applied: - print p + out.stdout(p)