Changes between Initial Version and Version 11 of Ticket #22617


Ignore:
Timestamp:
Jul 28, 2014, 2:51:27 PM (10 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22617

    • Property Component UncategorizedCore (Management commands)
    • Property Type UncategorizedCleanup/optimization
  • Ticket #22617 – Description

    initial v11  
    1 Please replace code in make messages to not delete *.po files if error occured and show messages (fix exception later).
     1Please replace code in make messages to not delete *.po files if error occurred and show messages (fix exception later).
    22
    33Replace this code:
     4{{{
    45            if errors:
    56                if status != STATUS_OK:
     
    89                elif self.verbosity > 0:
    910                    self.stdout.write(errors)
    10 
     11}}}
    1112With this code (it shows error root cause and save/copy *.po need to solve this error):
    12 
     13{{{
    1314            if errors:
    1415                if status != STATUS_OK:
     
    2021                elif self.verbosity > 0:
    2122                    self.stdout.write(errors)
    22 
    23 All modules using command line tools should report errors and not delete input if error occured.
     23}}}
     24All modules using command line tools should report errors and not delete input if error occurred.
Back to Top