commit 106567876716295ec6fcfbfb7334ce018aff127a Author: cypherpunks cypherpunks@torproject.org Date: Fri Nov 4 14:29:24 2016 +0000
Fix some typos --- stem/version.py | 2 +- test/integ/installation.py | 2 +- test/settings.cfg | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/stem/version.py b/stem/version.py index 6f7e514..22a67b6 100644 --- a/stem/version.py +++ b/stem/version.py @@ -112,7 +112,7 @@ def get_system_tor_version(tor_cmd = 'tor'): if os.path.isabs(tor_cmd): exc = "Unable to check tor's version. '%s' doesn't exist." % tor_cmd else: - exc = "Unable to run '%s'. Mabye tor isn't in your PATH?" % version_cmd + exc = "Unable to run '%s'. Maybe tor isn't in your PATH?" % version_cmd
raise IOError(exc)
diff --git a/test/integ/installation.py b/test/integ/installation.py index 007b911..189c26e 100644 --- a/test/integ/installation.py +++ b/test/integ/installation.py @@ -69,7 +69,7 @@ class TestInstallation(unittest.TestCase): def test_installs_all_files(self): """ Check that all the files in the stem directory are present in the - installatnion. This is a very common gotcha since our setup.py + installation. This is a very common gotcha since our setup.py requires us to remember to add new modules and non-source files. """
diff --git a/test/settings.cfg b/test/settings.cfg index e5174d2..9504da3 100644 --- a/test/settings.cfg +++ b/test/settings.cfg @@ -46,10 +46,10 @@ msg.help | | Examples: | run_tests.py --unit --integ -| Run unit and integraiton tests. +| Run unit and integration tests. | | run_tests.py --integ --target RUN_ALL -| Run integraion tests against all tor configurations. +| Run integration tests against all tor configurations. | | run_tests.py --integ --test test.integ.util | Only run integration tests for the util modules.
tor-commits@lists.torproject.org