Rust Racer bug in rust_code.py

If reporting a bug with the Zeus IDE please post the details here. Please do not post questions here.
Post Reply
FeanorLobelia
Posts: 1
Joined: Thu Oct 27, 2016 6:47 pm

Rust Racer bug in rust_code.py

Post 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
jussij
Site Admin
Posts: 2650
Joined: Fri Aug 13, 2004 5:10 pm

Re: Rust Racer bug in rust_code.py

Post by jussij »

Hi Luke,
There's a stray bracket.
Ooops :oops:

Thanks for taking the time to report this bug :)

Cheers Jussi
Post Reply