blob: 8d7ee2aee824ff7e162fbc1146ea7d00a430165d (
plain)
1
2
3
4
5
6
7
|
import os.path
from apport.hookutils import *
def add_info(report):
if not apport.packaging.is_distro_package(report['Package'].split()[0]):
report['ThirdParty'] = 'True'
report['CrashDB'] = 'indicator_sound'
|