Ticket #42776: base-utils.py.patch

File base-utils.py.patch, 465 bytes (added by okmacports@…, 10 years ago)
  • base/utils.py

    old new  
    22142214
    22152215    try:
    22162216        process = {}
    2217         p1 = Popen(["ps", "-w", "-w", "aux"], stdout=PIPE)
     2217        p1 = Popen(["ps", "auxww"], stdout=PIPE)
    22182218        p2 = Popen(["grep", process_name], stdin=p1.stdout, stdout=PIPE)
    22192219        p3 = Popen(["grep", "-v", "grep"], stdin=p2.stdout, stdout=PIPE)
    22202220        output = p3.communicate()[0]