From: richard Date: Mon, 24 Feb 2003 04:12:15 +0000 (+0000) Subject: remove debug printing X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b1c8af755b0a65ba5205e2b0fa613ebae62b4307;p=roundup.git remove debug printing git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1541 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/templates/classic/detectors/__init__.py b/roundup/templates/classic/detectors/__init__.py index 12ef967..96bb081 100644 --- a/roundup/templates/classic/detectors/__init__.py +++ b/roundup/templates/classic/detectors/__init__.py @@ -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