Skip to content

Commit

Permalink
Updated docstrings. Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
pkittenis committed Dec 9, 2015
1 parent 6bde7d0 commit 2027f2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions pssh/pssh_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,10 +482,9 @@ def copy_file(self, local_file, remote_file, recurse=False):
:param recurse: Whether or not to descend into directories recursively.
:type recurse: bool
:raises: :mod:'ValueError' when a directory is supplied to local_file \
:raises: :mod:`ValueError` when a directory is supplied to local_file \
and recurse is not set
.. note ::
Remote directories in `remote_file` that do not exist will be
created as long as permissions allow.
Expand Down
2 changes: 1 addition & 1 deletion pssh/ssh_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def copy_file(self, local_file, remote_file, recurse=False):
:param recurse: Whether or not to descend into directories recursively.
:type recurse: bool
:raises: :mod:'ValueError' when a directory is supplied to local_file \
:raises: :mod:`ValueError` when a directory is supplied to local_file \
and recurse is not set
"""
if os.path.isdir(local_file) and recurse:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from setuptools import setup, find_packages

setup(name='parallel-ssh',
version='0.80.3',
version='0.80.4',
description='Asynchronous parallel SSH library',
author='Panos Kittenis',
author_email='[email protected]',
Expand Down

0 comments on commit 2027f2c

Please sign in to comment.