Skip to content

Commit 2027f2c

Browse files
author
Dan
committed
Updated docstrings. Bumped version
1 parent 6bde7d0 commit 2027f2c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

pssh/pssh_client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,10 +482,9 @@ def copy_file(self, local_file, remote_file, recurse=False):
482482
:param recurse: Whether or not to descend into directories recursively.
483483
:type recurse: bool
484484
485-
:raises: :mod:'ValueError' when a directory is supplied to local_file \
485+
:raises: :mod:`ValueError` when a directory is supplied to local_file \
486486
and recurse is not set
487487
488-
489488
.. note ::
490489
Remote directories in `remote_file` that do not exist will be
491490
created as long as permissions allow.

pssh/ssh_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def copy_file(self, local_file, remote_file, recurse=False):
309309
:param recurse: Whether or not to descend into directories recursively.
310310
:type recurse: bool
311311
312-
:raises: :mod:'ValueError' when a directory is supplied to local_file \
312+
:raises: :mod:`ValueError` when a directory is supplied to local_file \
313313
and recurse is not set
314314
"""
315315
if os.path.isdir(local_file) and recurse:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from setuptools import setup, find_packages
1717

1818
setup(name='parallel-ssh',
19-
version='0.80.3',
19+
version='0.80.4',
2020
description='Asynchronous parallel SSH library',
2121
author='Panos Kittenis',
2222
author_email='[email protected]',

0 commit comments

Comments
 (0)