Code review comment for lp:~marco-gallotta/ibid/flight

Revision history for this message
Jonathan Hitchcock (vhata) wrote :

Line 76:

  query = [unicode(q) for q in query.lower().split(' ') if q]

That can just be:

  query = [unicode(q) for q in query.lower().split()]

(This note brought to you from the Minor Quibbles Now, Proper Reviews Later Dept.)

« Back to merge proposal