Reverse RLS toolstate check override

As per https://github.com/rust-lang/rust/pull/60946#issuecomment-493707005
This commit is contained in:
Igor Matuszewski 2019-05-18 23:59:57 +02:00
parent 1c939a3e55
commit 8d419588f1

View File

@ -21,11 +21,6 @@ if __name__ == '__main__':
state = cur[os_name]
new_state = toolstate.get(tool, '')
if verb == 'regressed':
if tool == 'rls':
# Temporary override until
# https://github.com/rust-lang/rust/issues/60848 is fixed.
updated = False
else:
updated = new_state < state
elif verb == 'changed':
updated = new_state != state