From 5dd4e9f318e3bb27967d86f42be64fa839967145 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Tue, 6 Jul 2010 16:10:49 +0200 Subject: [PATCH] Fixed a typo --- docs/patterns/fabric.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/patterns/fabric.rst b/docs/patterns/fabric.rst index 5f306cec..de23ffa8 100644 --- a/docs/patterns/fabric.rst +++ b/docs/patterns/fabric.rst @@ -50,7 +50,7 @@ virtual environment:: # figure out the release name and version dist = local('python setup.py --fullname').strip() # upload the source tarball to the temporary folder on the server - put('sdist/%s.tar.gz' % dist, '/tmp/') + put('sdist/%s.tar.gz' % dist, '/tmp/yourapplication.tar.gz') # create a place where we can unzip the tarball, then enter # that directory and unzip it run('mkdir yourapplication')