Ignore:
Timestamp:
30 Oct 2012, 17:31:43 (12 years ago)
Author:
Henrik Bettermann
Message:

We need to import old scratch card payments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py

    r9457 r9467  
    2727from zope.catalog.interfaces import ICatalog
    2828from zope.component import queryUtility, getUtility, createObject
    29 from zope.schema.interfaces import ConstraintNotSatisfied
     29from zope.schema.interfaces import ConstraintNotSatisfied, RequiredMissing
    3030from zope.formlib.textwidgets import BytesDisplayWidget
    3131from hurry.workflow.interfaces import IWorkflowInfo, IWorkflowState
     
    21082108        except KeyError:
    21092109            self.flash(_('This level exists.'))
     2110        except RequiredMissing:
     2111            self.flash(_('Your data are incomplete'))
    21102112        self.redirect(self.url(self.context))
    21112113        return
Note: See TracChangeset for help on using the changeset viewer.