Skip to content

Commit a7dd7ae

Browse files
committed
Fix id section in exception handler again
Do not get pgid, since we already get pgrp.
1 parent 7b26ef1 commit a7dd7ae

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

WebKit/ExceptionHandler.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -692,8 +692,7 @@ def osIdDict():
692692
693693
Returns a dictionary containing id information such as uid and pid.
694694
"""
695-
ids = ['egid', 'euid', 'gid', 'groups', 'pgid', 'pgrp',
696-
'pid', 'ppid', 'uid']
695+
ids = ['egid', 'euid', 'gid', 'groups', 'pgrp', 'pid', 'ppid', 'uid']
697696
attrs = {}
698697
for id in ids:
699698
getter = 'get' + id

0 commit comments

Comments
 (0)