--- a/Project/Project.py Thu Apr 12 19:18:23 2012 +0200 +++ b/Project/Project.py Sat Apr 14 12:03:10 2012 +0200 @@ -660,7 +660,8 @@ # create hash value, if it doesn't have one if not self.pdata["HASH"][0]: hash = str(QCryptographicHash.hash( - QByteArray(self.ppath), QCryptographicHash.Sha1).toHex(), + QByteArray(self.ppath.encode("utf-8")), + QCryptographicHash.Sha1).toHex(), encoding="utf-8") self.pdata["HASH"] = [hash] self.setDirty(True)