]> git.tokkee.org Git - roundup.git/commitdiff

Code

remove debug printing
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 24 Feb 2003 04:12:15 +0000 (04:12 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 24 Feb 2003 04:12:15 +0000 (04:12 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1541 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/templates/classic/detectors/__init__.py

index 12ef9674f22e7cecff913484191e80c8d44788f8..96bb081622d128b10e12928749386b5f832cdb10 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-#$Id: __init__.py,v 1.7 2003-02-20 07:04:55 richard Exp $
+#$Id: __init__.py,v 1.8 2003-02-24 04:12:15 richard Exp $
 
 import sys, os, imp
 
@@ -31,7 +31,6 @@ def init(db):
         if ext == '.py':
             module = imp.load_module(name, open(path), file,
                 ('.py', 'r', imp.PY_SOURCE))
-            print (name, open(path), file, module)
             module.init(db)
 
 # vim: set filetype=python ts=4 sw=4 et si