[Treepkg-commits] r416 - trunk/treepkg
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Tue Aug 24 12:45:32 CEST 2010
Author: aheinecke
Date: 2010-08-24 12:45:31 +0200 (Tue, 24 Aug 2010)
New Revision: 416
Modified:
trunk/treepkg/util.py
Log:
Ignore warnings about deprecated MD5 module
Modified: trunk/treepkg/util.py
===================================================================
--- trunk/treepkg/util.py 2010-08-23 12:53:49 UTC (rev 415)
+++ trunk/treepkg/util.py 2010-08-24 10:45:31 UTC (rev 416)
@@ -14,6 +14,8 @@
import fnmatch
import pwd
import os.path
+import warnings
+warnings.simplefilter("ignore", category=DeprecationWarning)
import md5
import run
More information about the Treepkg-commits
mailing list