Changes between Initial Version and Version 11 of Ticket #22617
- Timestamp:
- Jul 28, 2014, 2:51:27 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #22617
- Property Component Uncategorized → Core (Management commands)
- Property Type Uncategorized → Cleanup/optimization
-
Ticket #22617 – Description
initial v11 1 Please replace code in make messages to not delete *.po files if error occur ed and show messages (fix exception later).1 Please replace code in make messages to not delete *.po files if error occurred and show messages (fix exception later). 2 2 3 3 Replace this code: 4 {{{ 4 5 if errors: 5 6 if status != STATUS_OK: … … 8 9 elif self.verbosity > 0: 9 10 self.stdout.write(errors) 10 11 }}} 11 12 With this code (it shows error root cause and save/copy *.po need to solve this error): 12 13 {{{ 13 14 if errors: 14 15 if status != STATUS_OK: … … 20 21 elif self.verbosity > 0: 21 22 self.stdout.write(errors) 22 23 All modules using command line tools should report errors and not delete input if error occur ed.23 }}} 24 All modules using command line tools should report errors and not delete input if error occurred.