summaryrefslogtreecommitdiff
path: root/psutil/_psposix.py
diff options
context:
space:
mode:
Diffstat (limited to 'psutil/_psposix.py')
-rw-r--r--psutil/_psposix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/_psposix.py b/psutil/_psposix.py
index 1188c9f2..81076043 100644
--- a/psutil/_psposix.py
+++ b/psutil/_psposix.py
@@ -123,7 +123,7 @@ def disk_usage(path):
if not PY3 and isinstance(path, unicode):
# this is a bug with os.statvfs() and unicode on
# Python 2, see:
- # - https://code.google.com/p/psutil/issues/detail?id=416
+ # - https://github.com/giampaolo/psutil/issues/416
# - http://bugs.python.org/issue18695
try:
path = path.encode(sys.getfilesystemencoding())