changeset 7:6e3cf8f05464

note TODO: reading JSON
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 24 Mar 2012 23:15:21 -0700
parents dce954a3831f
children 975fbc45cfcd
files configuration/config.py
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/configuration/config.py	Sat Mar 24 23:14:22 2012 -0700
+++ b/configuration/config.py	Sat Mar 24 23:15:21 2012 -0700
@@ -26,6 +26,8 @@
 if json:
     class JSON(object):
         extensions = ['json']
+        def read(self, filename):
+            raise NotImplementedError("TODO")
     configuration_providers.append(JSON)
 
 if yaml: