You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2013/09/11 13:22:07 UTC

[5/6] git commit: Fix a typo, some rewording.

Fix a typo, some rewording.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/354b3a40
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/354b3a40
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/354b3a40

Branch: refs/heads/trunk
Commit: 354b3a40010f7699a873fca7dd623b5c47faf992
Parents: f011225
Author: Tomaz Muraus <to...@apache.org>
Authored: Wed Sep 11 13:17:19 2013 +0200
Committer: Tomaz Muraus <to...@apache.org>
Committed: Wed Sep 11 13:17:19 2013 +0200

----------------------------------------------------------------------
 libcloud/compute/deployment.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/354b3a40/libcloud/compute/deployment.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/deployment.py b/libcloud/compute/deployment.py
index c569186..3d8784c 100644
--- a/libcloud/compute/deployment.py
+++ b/libcloud/compute/deployment.py
@@ -117,11 +117,12 @@ class ScriptDeployment(Deployment):
     """
     Runs an arbitrary shell script on the server.
 
-    This step works by first writting the content of the shell script (script
+    This step works by first writing the content of the shell script (script
     argument) in a *.sh file on a remote server and then running that file.
 
-    If you are running a non-shell script, make sure to the the appropriate
-    shebang to the top of the script.
+    If you are running a non-shell script, make sure to put the appropriate
+    shebang to the top of the script. You are also advised to do that even if
+    you are running a plan shell script.
     """
 
     def __init__(self, script, args=None, name=None, delete=False):