blob: 4b0dd78045e93ce0807af30c7b74e787e363b52f (
plain)
1
2
3
4
5
6
|
import os.path
import apport.hookutils
def add_info(report):
log_file = os.path.expanduser('~/.cache/shotwell/shotwell.log')
apport.hookutils.attach_file_if_exists(report, log_file, 'shotwell.log')
|