bot-status.py: Use shutil.move instead of os.rename

os.rename fails if the source and destination are on
different file systems.

For instance my machine has /tmp and /work/<this repo>
on different file systems.

https://docs.python.org/3/library/os.html#os.rename

shutil.move handles this for you.

https: //docs.python.org/3/library/shutil.html#shutil.move

Change-Id: I6cd6442413bb4a3ed5c6007a18fef327bfbc71c7
1 file changed