Como fazer um redirect usando uma CreateView? Django

Bom galera,

Essa é minha View

from django.shortcuts import render, redirect, get_object_or_404
from django.http import HttpResponse
from django.views.generic import TemplateView,ListView
from django.views.generic.edit import CreateView, UpdateView, DeleteView
from django.core.urlresolvers import reverse_lazy

from Atendimentos.models import Atendimento

class AtendimentosList(ListView):
model = Atendimento

class AtendimentoNew(CreateView):
model = Atendimento
fields = [‘operador’,‘solicitante’, ‘telefone_solicitante’, ‘placa’, ‘frota’, ‘motivo’, ‘protocolo’, ‘data’, ‘situacao’]
success_url = reverse_lazy(‘atendimentos:atendimento_list’)

class AtendimentoUpdate(UpdateView):
model = Atendimento
fields = [‘operador’,‘solicitante’, ‘telefone_solicitante’, ‘placa’, ‘frota’, ‘motivo’, ‘protocolo’, ‘data’]
success_url = reverse_lazy(‘atendimentos:atendimento_list’)

minha duvida é, depois que eu preencho o formulário e salvo ele me retorna um erro, apesar de salvar o objeto.
Estou achando que o erro é que ele está tentando renderizar uma pagina que não existe, poderiam me ajudar?
Vejam o erro

NoReverseMatch at /new
u’atendimentos’ is not a registered namespace
Request Method: POST
Request URL: http://localhost:8000/new
Django Version: 1.8.16
Exception Type: NoReverseMatch
Exception Value:
u’atendimentos’ is not a registered namespace
Exception Location: C:\Python27\lib\site-packages\django\core\urlresolvers.py in reverse, line 574
Python Executable: C:\Python27\python.exe
Python Version: 2.7.12
Python Path:
[‘C:\Users\PauloMattos\Documents\PMR’,
‘C:\Windows\SYSTEM32\python27.zip’,
‘C:\Python27\DLLs’,
‘C:\Python27\lib’,
‘C:\Python27\lib\plat-win’,
‘C:\Python27\lib\lib-tk’,
‘C:\Python27’,
‘C:\Python27\lib\site-packages’]
Server time: Wed, 9 Nov 2016 19:35:32 -0200

O problema é que eu não sei implementar um redirect em um CreateView…