This commit is contained in:
Ross Poulton
2015-04-28 09:13:54 +10:00
parent ffb6243af0
commit 70c57f9096
10 changed files with 198 additions and 171 deletions

View File

@ -6,8 +6,10 @@ django-helpdesk - A Django powered ticket tracker for small enterprise.
forms.py - Definitions of newforms-based forms for creating and maintaining
tickets.
"""
from StringIO import StringIO
try:
from StringIO import StringIO
except ImportError:
from io import StringIO
from django import forms
from django.forms import extras