summaryrefslogtreecommitdiff
path: root/examples/repo
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2020-03-08 08:57:08 -0700
committerDavid Lord <davidism@gmail.com>2020-03-08 08:57:08 -0700
commit718485be48263056e7036ea9a60ce11b47e2fc26 (patch)
tree0fa1b49ed926f18ab3d247c2cacada892908123a /examples/repo
parentf8f02bfc63cb6e63b7a3373384758f7226553408 (diff)
downloadclick-718485be48263056e7036ea9a60ce11b47e2fc26.tar.gz
manual cleanup
Diffstat (limited to 'examples/repo')
-rw-r--r--examples/repo/repo.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/repo/repo.py b/examples/repo/repo.py
index 470296b..5fd6ead 100644
--- a/examples/repo/repo.py
+++ b/examples/repo/repo.py
@@ -17,7 +17,7 @@ class Repo(object):
click.echo(" config[{}] = {}".format(key, value), file=sys.stderr)
def __repr__(self):
- return "<Repo %r>" % self.home
+ return "<Repo {}>".format(self.home)
pass_repo = click.make_pass_decorator(Repo)
@@ -82,7 +82,7 @@ def clone(repo, src, dest, shallow, rev):
repo.home = dest
if shallow:
click.echo("Making shallow checkout")
- click.echo("Checking out revision %s" % rev)
+ click.echo("Checking out revision {}".format(rev))
@cli.command()
@@ -93,7 +93,7 @@ def delete(repo):
This will throw away the current repository.
"""
- click.echo("Destroying repo %s" % repo.home)
+ click.echo("Destroying repo {}".format(repo.home))
click.echo("Deleted!")
@@ -118,8 +118,8 @@ def setuser(repo, username, email, password):
"--message",
"-m",
multiple=True,
- help="The commit message. If provided multiple times each "
- "argument gets converted into a new line.",
+ help="The commit message. If provided multiple times each"
+ " argument gets converted into a new line.",
)
@click.argument("files", nargs=-1, type=click.Path())
@pass_repo
@@ -136,7 +136,7 @@ def commit(repo, files, message):
marker = "# Files to be committed:"
hint = ["", "", marker, "#"]
for file in files:
- hint.append("# U %s" % file)
+ hint.append("# U {}".format(file))
message = click.edit("\n".join(hint))
if message is None:
click.echo("Aborted!")
@@ -148,7 +148,7 @@ def commit(repo, files, message):
else:
msg = "\n".join(message)
click.echo("Files to be committed: {}".format(files))
- click.echo("Commit message:\n" + msg)
+ click.echo("Commit message:\n{}".format(msg))
@cli.command(short_help="Copies files.")