Project

General

Profile

Bug #7935 ยป reporting.patch

Alex Page, 06/01/2020 02:10 PM

View differences:

chirp/ui/mainapp.py
1426 1426
            os.remove(filen)
1427 1427

  
1428 1428
        count = eset.do_export(filen)
1429
        reporting.report_model_usage(eset.rthread.radio, "export", count > 0)
1429
        success = count > 0 if count is not None else False
1430
        reporting.report_model_usage(eset.rthread.radio, "export", success)
1430 1431

  
1431 1432
    def do_about(self):
1432 1433
        d = gtk.AboutDialog()
    (1-1/1)