Skip to content

Commit

Permalink
Fix mixed up lines in summary
Browse files Browse the repository at this point in the history
The in and out directions were wrongly labelled.

Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Jun 29, 2015
1 parent 0e499ed commit 779e4d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions odorik/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,8 +742,8 @@ def process_line(self, line, from_date, to_date):
'call_count_in': calls_summary['count_in'],
'call_count_out': calls_summary['count_out'],
'call_length': calls_summary['length'],
'call_length_in': calls_summary['length_out'],
'call_length_out': calls_summary['length_in'],
'call_length_in': calls_summary['length_in'],
'call_length_out': calls_summary['length_out'],
'sms_count': messages_summary['count'],
'sms_count_in': messages_summary['count_in'],
'sms_count_out': messages_summary['count_out'],
Expand Down

0 comments on commit 779e4d8

Please sign in to comment.