summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
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)