shaモジュールの変わりにhashlibモジュールを使う

Play!を起動する時、

/home/foo/play/play:564: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
import sha

と表示されるので564行目を、

import sha

を、

from hashlib import sha1 as sha

と書き換えてみた。

[追記:11/3 2:02]
本家のソースを修正していただけたようです。https://bugs.launchpad.net/play/+bug/465992