Remove spurious debugging print statement
authorDiane Trout <diane@caltech.edu>
Wed, 20 Jul 2011 00:40:54 +0000 (17:40 -0700)
committerDiane Trout <diane@caltech.edu>
Wed, 20 Jul 2011 00:40:54 +0000 (17:40 -0700)
htsworkflow/util/hashfile.py

index f246410f34083fec6dd18f662d35c30613ec9bfc..2900e76ae3727f0b2182376f666cda4deaf85bd3 100644 (file)
@@ -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')