summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2007-10-26 18:32:27 -0400
committerMichael DeHaan <mdehaan@redhat.com>2007-10-26 18:32:27 -0400
commite419388b8982a16d329ea78624c0af7857845a33 (patch)
treed3ba50fa8d2dde2f8e5898b1f4ea08b2c7e71329 /func
parent5c42048c77796ea112976eb0b77f6d53a617d488 (diff)
downloadthird_party-func-e419388b8982a16d329ea78624c0af7857845a33.tar.gz
third_party-func-e419388b8982a16d329ea78624c0af7857845a33.tar.xz
third_party-func-e419388b8982a16d329ea78624c0af7857845a33.zip
Remove some debug prints
Diffstat (limited to 'func')
-rw-r--r--func/minion/modules/filetracker.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/func/minion/modules/filetracker.py b/func/minion/modules/filetracker.py
index f66a6d0..368b3b5 100644
--- a/func/minion/modules/filetracker.py
+++ b/func/minion/modules/filetracker.py
@@ -7,6 +7,7 @@
## provides file meta-data (and optionally full data) to func-inventory
##
## (C) Vito Laurenza <vitolaurenza@gmail.com>
+## + Michael DeHaan <mdehaan@redhat.com>
##
## This software may be freely redistributed under the terms of the GNU
## general public license.
@@ -99,8 +100,6 @@ class FileTracker(func_module.FuncModule):
"""
filehash = self.__load()
- print "DEBUG: deleting: %s" % file_name
- print "DEBUG: keys: %s" % filehash
if file_name in filehash.keys():
del filehash[file_name]
self.__save(filehash)