diff options
author | Michael DeHaan <mdehaan@redhat.com> | 2007-10-26 18:32:27 -0400 |
---|---|---|
committer | Michael DeHaan <mdehaan@redhat.com> | 2007-10-26 18:32:27 -0400 |
commit | e419388b8982a16d329ea78624c0af7857845a33 (patch) | |
tree | d3ba50fa8d2dde2f8e5898b1f4ea08b2c7e71329 /func/minion | |
parent | 5c42048c77796ea112976eb0b77f6d53a617d488 (diff) | |
download | func-e419388b8982a16d329ea78624c0af7857845a33.tar.gz func-e419388b8982a16d329ea78624c0af7857845a33.tar.xz func-e419388b8982a16d329ea78624c0af7857845a33.zip |
Remove some debug printsv0.13.3
Diffstat (limited to 'func/minion')
-rw-r--r-- | func/minion/modules/filetracker.py | 3 |
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) |