summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/procsmem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/procsmem.py b/scripts/procsmem.py
index d7b53f62..a28794b9 100755
--- a/scripts/procsmem.py
+++ b/scripts/procsmem.py
@@ -83,7 +83,7 @@ def main():
templ = "%-7s %-7s %-30s %7s %7s %7s %7s"
print(templ % ("PID", "User", "Cmdline", "USS", "PSS", "Swap", "RSS"))
print("=" * 78)
- for p in procs[86:]:
+ for p in procs[:86]:
line = templ % (
p.pid,
p._info["username"][:7],