From b920b637874eefd457c8d7a1bcca40b95c812437 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Thu, 20 Sep 2012 12:38:14 -0400 Subject: [PATCH] removed unneeded file --- python_apps/media-monitor2/upgrade2dot2.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 python_apps/media-monitor2/upgrade2dot2.py diff --git a/python_apps/media-monitor2/upgrade2dot2.py b/python_apps/media-monitor2/upgrade2dot2.py deleted file mode 100644 index 232d930f5..000000000 --- a/python_apps/media-monitor2/upgrade2dot2.py +++ /dev/null @@ -1,20 +0,0 @@ -import os -from configobj import ConfigObj -import traceback - -def upgrade(source, destination): - """ - Must be ran as sudo. will do upgrade of configuration files by filling in - missing values according to upgrade_data - """ - if not os.path.exists(source): - print("Cannot upgrade '%s'. Skipping this file" % source) - return - try: - cfg_source, cfg_dest = ConfigObj(source), ConfigObj(destination) - for key, val in cfg_source.iteritems(): - if key not in cfg_dest: cfg_dest[key] = val - cfg_dest.write() - except Exception: - print("Error upgrading") - print( traceback.format_exc() )