diff options
author | Tristan Maat <tristan.maat@codethink.com> | 2017-07-11 11:54:57 +0100 |
---|---|---|
committer | Tristan Maat <tristan.maat@codethink.com> | 2017-07-11 11:59:46 +0100 |
commit | 415faadb91295e13c2b5bdec8fb8f41270b5d86d (patch) | |
tree | 2d31f9102f812124084f250efcb21ad0af64b99e | |
parent | f82550522ea20545527180e300d7885b895141be (diff) | |
download | buildstream-arch_options.tar.gz |
main.py: Fix format stringarch_options
-rw-r--r-- | buildstream/_frontend/main.py | 2 |
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: |