Index: vcpx/config.py
===================================================================
--- vcpx/config.py	(revision 489)
+++ vcpx/config.py	(revision 490)
@@ -61,5 +61,9 @@
         """
         if self.has_option(section, option):
-            return SafeConfigParser.get(self, section, option)
+            value = SafeConfigParser.get(self, section, option)
+            if value == 'None':
+                return default
+            else:
+                return value
         else:
             return default
