Revision: 104
Author: janne.t.harkonen
Date: Sun Nov 7 23:46:46 2010
Log: preparing for 1.0 release
http://code.google.com/p/robotframework-sshlibrary/source/detail?r=104
Modified:
/trunk/src/SSHLibrary/__init__.py
=======================================
--- /trunk/src/SSHLibrary/__init__.py Sun Nov 7 23:18:35 2010
+++ /trunk/src/SSHLibrary/__init__.py Sun Nov 7 23:46:46 2010
@@ -27,7 +27,7 @@
else:
from pythonclient import SSHClient
-__version__ = 'trunk'
+__version__ = '1.0'
class SSHLibrary:
@@ -182,7 +182,7 @@
def login(self, username, password):
"""Logs in to SSH server with given user information.
- Reads and return available output. If prompt is set, everything
until
+ Reads and returns available output. If prompt is set, everything
until
the prompt is returned.
Example:
@@ -200,7 +200,7 @@
`keyfile` is a path to a valid OpenSSH *private* key file.
`password` is used to unlock `keyfile` if unlocking is required.
- Reads and return available output. If prompt is set, everything
until
+ Reads and returns available output. If prompt is set, everything
until
the prompt is returned.
"""