Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

int.py 224B

12345678910111213
  1. #-*- coding: utf-8 -*-
  2. from EditorialModel.fields import EmField
  3. class EmFieldInt(EmField):
  4. ftype = 'int'
  5. def __init__(self, **kwargs):
  6. super(EmFieldChar, self).__init__(**kwargs)
  7. fclass=EmFieldInt