On Apr 04, 2009, at 04:41:15, [email protected] wrote:
> Warning was:
>
> Growl.py:17: DeprecationWarning: the md5 module is deprecated; use
> hashlib instead
>
> And patch is here:
>
> http://growldiscuss.googlegroups.com/web/Growl.py.patch
You'll need to change the indentation back to tabs. Currently, you
have it set to spaces, which will cause a syntax error because the
following lines are indented with tabs.
Once you've done that, you can commit it yourself. (Yay DVCS!) After
you commit it, you'll need to export it:
hg ci
hg export -o 'Growl-Python-UseHashlib-%h.hgpatch' tip
Then, when we import it from that file, we'll get the commit with your
name on it.
Note: If you haven't set your name in .hgrc, hg will put
“usern...@local-hostname” as the commit's author, which is probably
not what you want. The part to add to ~/.hgrc is:
[ui]
username = Bjoern Haeuser
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Growl Discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/growldiscuss?hl=en
-~----------~----~----~----~------~----~------~--~---