diff options
author | Giampaolo Rodola' <g.rodola@gmail.com> | 2014-05-23 12:18:46 +0200 |
---|---|---|
committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2014-05-23 12:18:46 +0200 |
commit | a6ecb26350231a9da4bf456d37c79cf1a6d03eb8 (patch) | |
tree | e2e78e157fae04a7b70814f2df63c85744d26d34 /psutil/_psbsd.py | |
parent | 37b8f69c26e058de83407bc7d13423b5b0c4eaf1 (diff) | |
download | psutil-a6ecb26350231a9da4bf456d37c79cf1a6d03eb8.tar.gz |
github migration
Diffstat (limited to 'psutil/_psbsd.py')
-rw-r--r-- | psutil/_psbsd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/psutil/_psbsd.py b/psutil/_psbsd.py index 56637364..9dcdfc21 100644 --- a/psutil/_psbsd.py +++ b/psutil/_psbsd.py @@ -104,7 +104,7 @@ else: # XXX # Ok, this is very dirty. # On FreeBSD < 8 we cannot gather per-cpu information, see: - # http://code.google.com/p/psutil/issues/detail?id=226 + # https://github.com/giampaolo/psutil/issues/226 # If num cpus > 1, on first call we return single cpu times to avoid a # crash at psutil import time. # Next calls will fail with NotImplementedError @@ -181,7 +181,7 @@ def users(): def net_connections(kind): if kind not in _common.conn_tmap: raise ValueError("invalid %r kind argument; choose between %s" - % (kind, ', '.join([repr(x) for x in conn_tmap]))) + % (kind, ', '.join([repr(x) for x in conn_tmap]))) families, types = conn_tmap[kind] ret = [] rawlist = cext.net_connections() |