summaryrefslogtreecommitdiffstats
path: root/tuna-cmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'tuna-cmd.py')
-rwxr-xr-xtuna-cmd.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tuna-cmd.py b/tuna-cmd.py
index 7d6aefa..94349bf 100755
--- a/tuna-cmd.py
+++ b/tuna-cmd.py
@@ -474,7 +474,11 @@ def main():
if not thread_list:
print ("tuna: %s " % o) + _("requires a thread list!")
sys.exit(2)
- tuna.threads_set_priority(thread_list, a, affect_children)
+ try:
+ tuna.threads_set_priority(thread_list, a, affect_children)
+ except SystemError, err:
+ print "tuna: %s" % err
+ sys.exit(2)
elif o in ("-P", "--show_threads"):
# If the user specified process names that weren't
# resolved to pids, don't show all threads.