summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Maat <tristan.maat@codethink.com>2017-07-11 11:54:57 +0100
committerTristan Maat <tristan.maat@codethink.com>2017-07-11 11:59:46 +0100
commit415faadb91295e13c2b5bdec8fb8f41270b5d86d (patch)
tree2d31f9102f812124084f250efcb21ad0af64b99e
parentf82550522ea20545527180e300d7885b895141be (diff)
downloadbuildstream-arch_options.tar.gz
main.py: Fix format stringarch_options
-rw-r--r--buildstream/_frontend/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_frontend/main.py b/buildstream/_frontend/main.py
index 8ffbbd5ab..e4ada3020 100644
--- a/buildstream/_frontend/main.py
+++ b/buildstream/_frontend/main.py
@@ -790,7 +790,7 @@ class App():
.format(self.file_count, self.cache_count), nl=False, err=True)
elif self.cache_count == 1:
click.echo("Checking {} elements."
- .format(self.file_count, self.cache_count), nl=False, err=True)
+ .format(self.file_count), nl=False, err=True)
else:
click.echo(".", nl=False, err=True)
else: