__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import apport.packaging, re
from apport.hookutils import *
def add_info(report):
# the issue is not in the gnome-settings-daemon code so reassign
major_version = apport.packaging.get_version('gnome-settings-daemon').split('.')[0]
gsd_libdir = '/usr/lib/gnome-settings-daemon-{}'.format(major_version)
if "Stacktrace" in report and gsd_libdir in report["Stacktrace"]:
for words in report["Stacktrace"].split():
if words.startswith(gsd_libdir):
if apport.packaging.get_file_package(words) != 'gnome-settings-daemon':
report.add_package_info(apport.packaging.get_file_package(words))
return
# update the title to reflect the component and tab
component = re.compile("lib(\w*).so").search(words).groups(1)[0]
report['Title'] = '[%s]: %s' % (component, report.get('Title', report.standard_title()))
report['Tags'] = '%s %s' % (report.get('Tags', ""), component)
break # Stop on the first .so that's the interesting one