diff --git a/psutil/_psposix.py b/psutil/_psposix.py index 10cbc3352..df5d4780c 100644 --- a/psutil/_psposix.py +++ b/psutil/_psposix.py @@ -143,7 +143,7 @@ def disk_usage(path): percent = usage_percent(used, total, _round=1) # NB: the percentage is -5% than what shown by df due to # reserved blocks that we are currently not considering: - # http://goo.gl/sWGbH + # https://github.com/giampaolo/psutil/issues/829#issuecomment-223750462 return sdiskusage(total, used, free, percent)