[kernel] r14489 -	people/waldi/utils/kconfigeditor2/lib/kconfigeditor/kconfig/menu
    Bastian Blank 
    waldi at alioth.debian.org
       
    Thu Oct 29 09:43:40 UTC 2009
    
    
  
Author: waldi
Date: Thu Oct 29 09:43:38 2009
New Revision: 14489
Log:
lib/kconfigeditor/kconfig/menu/file.py: Ignore unparsable prompt.
Modified:
   people/waldi/utils/kconfigeditor2/lib/kconfigeditor/kconfig/menu/file.py
Modified: people/waldi/utils/kconfigeditor2/lib/kconfigeditor/kconfig/menu/file.py
==============================================================================
--- people/waldi/utils/kconfigeditor2/lib/kconfigeditor/kconfig/menu/file.py	Thu Oct 29 09:38:10 2009	(r14488)
+++ people/waldi/utils/kconfigeditor2/lib/kconfigeditor/kconfig/menu/file.py	Thu Oct 29 09:43:38 2009	(r14489)
@@ -221,9 +221,7 @@
             if match:
                 self.entry.prompt = match.group('text1') or match.group('text2') or match.group('text3')
                 text = match.group('expression')
-            else:
-                raise ParseException("Can't find a prompt")
-            _Expression(self, text)
+                _Expression(self, text)
 
     def process_bool(self, text, ind):
         self.entry.type = MenuEntryConfig.TYPE_BOOL
    
    
More information about the Kernel-svn-changes
mailing list