Commit 91a9b268 authored by Jérome Perrin's avatar Jérome Perrin

crm: pylint on py3

parent dc241331
...@@ -92,11 +92,7 @@ for r_event in event_list: ...@@ -92,11 +92,7 @@ for r_event in event_list:
unassigned_dic[event.getSimulationState()]=unassigned_dic[event.getSimulationState()]+1 unassigned_dic[event.getSimulationState()]=unassigned_dic[event.getSimulationState()]+1
unassigned_dic['total']=unassigned_dic['total']+1 unassigned_dic['total']=unassigned_dic['total']+1
#Sort the result and add unassigned #Sort the result and add unassigned
def comparator(x, y): column_list.sort(key=lambda x: (x['ticket_type'], x['ticket_title']))
if x['ticket_type'] == y['ticket_type']:
return cmp(x['ticket_title'], y['ticket_title'])
return cmp(x['ticket_type'], y['ticket_type'])
column_list.sort(comparator)
if unassigned_dic['total']>0: column_list.append(unassigned_dic) if unassigned_dic['total']>0: column_list.append(unassigned_dic)
#fill line_list that is returned to report #fill line_list that is returned to report
line_list = [] line_list = []
......
import six
text = context.asText() text = context.asText()
LENGTH = 25 LENGTH = 25
#TODO: Think about the display length of multibyte characters. # TODO: Think about the display length of multibyte characters.
if six.PY3:
return text[:LENGTH]
try: try:
return unicode(text, 'utf-8')[:LENGTH].encode('utf-8') return six.text_type(text, 'utf-8')[:LENGTH].encode('utf-8')
except UnicodeDecodeError: except UnicodeDecodeError:
return text[:LENGTH] return text[:LENGTH]
...@@ -49,7 +49,7 @@ for r_ticket in ticket_list: ...@@ -49,7 +49,7 @@ for r_ticket in ticket_list:
for r_event_causality in event_causality_list: for r_event_causality in event_causality_list:
event_causality = r_event_causality.getObject() event_causality = r_event_causality.getObject()
#check that one event it isn't related by causality and follow-up with the same ticket #check that one event it isn't related by causality and follow-up with the same ticket
if ticket.getUid() <> event_causality.getFollowUpUid(): if ticket.getUid() != event_causality.getFollowUpUid():
line_list.append(Object(uid='new_', line_list.append(Object(uid='new_',
ticket='', ticket='',
type=event_causality.getTranslatedPortalType(), type=event_causality.getTranslatedPortalType(),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment