This fixes loading of files when running on systems where "C:\..." is
not an absolute path.
+import os
+
main_config_file = 'C:/System/Data/mobile_gtd.cfg'
default_configuration = {"screen":"normal",
-"path":"C:/Data/GTD/",
+# Make the path absolute. This is a no-op on Symbian, since it is
+# already absolute, but helps when running on other systems (some of the
+# code relies on this path being absolute).
+"path": os.path.abspath("C:/Data/GTD/"),
"inactivity_threshold":"7",
"read_sms":"1",
"action_editor":"form"