Search found 1 match

by FeanorLobelia
Thu Oct 27, 2016 6:54 pm
Forum: Reporting a Bug
Topic: Rust Racer bug in rust_code.py
Replies: 1
Views: 23593

Rust Racer bug in rust_code.py

As it says in the title...

Line 249 is:
if results != None and len(results) > 0):

but should be:
if (results != None and len(results) > 0):

There's a stray bracket.

Thanks xxx
Luke