From: Diane Trout Date: Wed, 20 Jul 2011 00:40:54 +0000 (-0700) Subject: Remove spurious debugging print statement X-Git-Tag: 0.5.3~18 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=7bd6ee3b511385bc823592538575152ccf5112df Remove spurious debugging print statement --- diff --git a/htsworkflow/util/hashfile.py b/htsworkflow/util/hashfile.py index f246410..2900e76 100644 --- a/htsworkflow/util/hashfile.py +++ b/htsworkflow/util/hashfile.py @@ -10,7 +10,6 @@ def make_md5sum(filename): """Quickly find the md5sum of a file """ md5_cache = os.path.join(filename+".md5") - print md5_cache if os.path.exists(md5_cache): logger.debug("Found md5sum in {0}".format(md5_cache)) stream = open(md5_cache,'r')