Changeset - f76428c6dace
[Not reviewed]
default
0 1 0
Branko Majic (branko) - 12 years ago 2013-11-09 19:08:04
branko@majic.rs
CONNT-17: Removed unnecessary ordering.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
conntrackt/models.py
Show inline comments
 
@@ -178,7 +178,7 @@ class Project(RelatedCollectorMixin, mod
 
        communications = []
 

	
 
        # Process each communication, and add the information to result.
 
        for communication in Communication.objects.filter(source__entity__project=self).select_related().order_by("source__entity__pk"):
 
        for communication in Communication.objects.filter(source__entity__project=self).select_related():
 
            communications.append({"source": communication.source.entity.name,
 
                                   "source_color": entity_colors[communication.source.entity.pk],
 
                                   "destination": communication.destination.entity.name,
0 comments (0 inline, 0 general)