From 2677bbee89458515396517d5a834a5ee5542e924 Mon Sep 17 00:00:00 2001 From: Jake Vanderplas Date: Sun, 21 Apr 2013 14:40:53 -0700 Subject: [PATCH] fix ssh publisher doc string --- hyde/ext/publishers/ssh.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hyde/ext/publishers/ssh.py b/hyde/ext/publishers/ssh.py index 11cb3b6..991b99b 100644 --- a/hyde/ext/publishers/ssh.py +++ b/hyde/ext/publishers/ssh.py @@ -24,10 +24,10 @@ as follows: >$ hyde gen >$ hyde publish -p ssh -For the above options, this will lead to execution of the following command, -assuming the specified deploy directory is ``deploy/``: +For the above options, this will lead to execution of the following command +within the ``deploy/`` directory: - rsync -r -e ssh [deploy/] username@ssh.server.com:/www/username/mysite/ + rsync -r -e ssh ./ username@ssh.server.com:/www/username/mysite/ """ from hyde.publisher import Publisher