Added the possibility for users to define a set of information fields
[sfa.git] / sfa / rspecs / rspec.py
index de7e250..8ed637d 100755 (executable)
@@ -15,8 +15,10 @@ class RSpec:
     type = None
     version = None
     namespaces = None    
+    user_options = {}
   
-    def __init__(self, rspec="", namespaces={}):
+    def __init__(self, rspec="", namespaces={}, user_options={}):
+       self.user_options = user_options
         if rspec:
             self.parse_rspec(rspec, namespaces)
         else: