diff options
Diffstat (limited to 'apport/shotwell.py')
-rw-r--r-- | apport/shotwell.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apport/shotwell.py b/apport/shotwell.py new file mode 100644 index 0000000..a6a0183 --- /dev/null +++ b/apport/shotwell.py @@ -0,0 +1,7 @@ +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') + |