# HG changeset patch # User Andre Heinecke # Date 1282646731 0 # Node ID e7e0ace683c69ae6fb199cc35f6786153882805b # Parent 6d65aa725f994aa542904d66d4190bc27d33da86 Ignore warnings about deprecated MD5 module diff -r 6d65aa725f99 -r e7e0ace683c6 treepkg/util.py --- a/treepkg/util.py Mon Aug 23 12:53:49 2010 +0000 +++ b/treepkg/util.py Tue Aug 24 10:45:31 2010 +0000 @@ -14,6 +14,8 @@ import fnmatch import pwd import os.path +import warnings +warnings.simplefilter("ignore", category=DeprecationWarning) import md5 import run