Skip to content

Commit

Permalink
Fixing a doc error and import problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
rolobio committed Apr 3, 2014
1 parent 873ecc7 commit 3f91338
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sshm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This module can be used to ssh into multiple servers at once.
Example:
from sshm import sshm
from sshm.lib import sshm
for result in sshm('example[5,8].com', 'ps aux | wc -l'):
print(result)
Expand Down
2 changes: 1 addition & 1 deletion sshm/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
except ImportError: # pragma: no cover version specific
from sshm.lib import sshm

__all__ = ['sshm']
__all__ = ['main']


def get_argparse_args(args=None):
Expand Down

0 comments on commit 3f91338

Please sign in to comment.