Page 1 of 1

Rust Racer bug in rust_code.py

Posted: Thu Oct 27, 2016 6:54 pm
by FeanorLobelia
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

Re: Rust Racer bug in rust_code.py

Posted: Fri Oct 28, 2016 2:03 am
by jussij
Hi Luke,
There's a stray bracket.
Ooops :oops:

Thanks for taking the time to report this bug :)

Cheers Jussi