Skip to content

Commit

Permalink
Make format clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
Rupert Bedford committed Apr 21, 2016
1 parent 9da43a0 commit b8f0a7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def deploy(archive=None, name='radar-client'):

version = re.search('-([^-]+)\.tar\.gz$', archive).group(1)

tmp_archive_path = '/tmp/{}.tar.gz'.format(name)
tmp_archive_path = '/tmp/{name}.tar.gz'.format(name=name)
put(archive, tmp_archive_path)

current_version = '/srv/{name}/current'.format(name=name)
Expand Down

0 comments on commit b8f0a7e

Please sign in to comment.