summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2015-08-02 20:04:36 +0200
committerGiampaolo Rodola <g.rodola@gmail.com>2015-08-02 20:04:36 +0200
commit59c50ff4a69d94683a8d996f24e9a3cdb4566b9b (patch)
treee02598fae7aecd93b71cf203eb09ec7ab90b3bbe
parent0925da3f28c5c542e709e3cf09de431e0c7013f2 (diff)
downloadpsutil-59c50ff4a69d94683a8d996f24e9a3cdb4566b9b.tar.gz
maybe we can run OSX/travis
-rw-r--r--.travis.yml2
-rw-r--r--psutil/__init__.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 2c549b21..c4a3a2be 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,6 +22,6 @@ script:
- pep8
os:
- linux
- - osx # currently not supported by travis
+ - osx
after_success:
- coveralls # upload reports to coveralls.io
diff --git a/psutil/__init__.py b/psutil/__init__.py
index e5655be8..79b369c9 100644
--- a/psutil/__init__.py
+++ b/psutil/__init__.py
@@ -486,8 +486,8 @@ class Process(object):
try:
# Checking if PID is alive is not enough as the PID might
# have been reused by another process: we also want to
- # check process identity.
- # Process identity / uniqueness over time is greanted by
+ # verify process identity.
+ # Process identity / uniqueness over time is guaranteed by
# (PID + creation time) and that is verified in __eq__.
return self == Process(self.pid)
except NoSuchProcess: