~cubic-wizard/cubic/experimental

« back to all changes in this revision

Viewing changes to usr/share/cubic/cubic/pages/compression_page.py

  • Committer: PJ Singh
  • Date: 2021-11-30 01:31:16 UTC
  • Revision ID: psingh.cubic@gmail.com-20211130013116-yspl57zt59xfr1e5
* Fixed Bug #1951662, On the Copy pages, pause to allow the user to view the results before automatically transitioning away from the page. * Fixed Bug #1951693, On the Copy pages, clicking the Cancel button may be unresponsive. * Fixed Bug #1951695, Show error status on the Copy pages. * Fixed Bug #1951715, On the Generate page, clicking the Back during update checksums may be unresponsive. * Experimental fix for issue, Cannot install Cubic in Linux Mint 19.x.

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
 
104
104
    else:
105
105
 
106
 
        logger.log_value('Error', BOLD_RED + 'Unknown action for setup' + NORMAL)
 
106
        logger.log_value('Error', f'{BOLD_RED}Unknown action for setup{NORMAL}')
107
107
 
108
108
        return 'unknown'
109
109
 
130
130
 
131
131
    else:
132
132
 
133
 
        logger.log_value('Error', BOLD_RED + 'Unknown action for enter' + NORMAL)
 
133
        logger.log_value('Error', f'{BOLD_RED}Unknown action for enter{NORMAL}')
134
134
 
135
135
        return 'unknown'
136
136
 
174
174
 
175
175
        configuration.save()
176
176
 
177
 
        logger.log_value('Error', BOLD_RED + 'Unknown action for leave' + NORMAL)
 
177
        logger.log_value('Error', f'{BOLD_RED}Unknown action for leave{NORMAL}')
178
178
 
179
179
        return 'unknown'
180
180