# HG changeset patch # User Changaco # Date 1344094997 -7200 # Node ID 0946b4e64b205c1a81a432ce5f38b9575988f2cc # Parent 96e2d5ffcd231b23491aafea15be4f65182bb4c1 fix a NameError Signed-off-by: Changaco diff --git a/feed-push b/feed-push --- a/feed-push +++ b/feed-push @@ -143,7 +143,7 @@ def update_config(path, event): if event == gamin.GAMChanged: parse_config_file(path_to_config_fd[path]) elif event == gamin.GAMDeleted: - log('removing actions from deleted config file '+config_fd.name) + log('removing actions from deleted config file '+path) config_to_feed_paths_to_commands.pop(path) path_to_config_fd.pop(path).close() new_feeds_paths = set(concat(d.keys() for d in config_to_feed_paths_to_commands.values()))