- Timestamp:
- 07/01/08 22:31:12 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branch/PreferencesWindow/umitPreferences/UmitConfWrite.py
r3059 r3061 48 48 pass 49 49 50 51 52 class GeneralSettings(UmitConfigParser, object): 53 """ 54 General Settings defining the settings like enable splash/warnings 55 nmap command, remove history (using targets, and recents class), etc 56 """ 57 def __init__(self): 58 self.parser = Path.config_parser 59 self.section_name = "general_settings" 60 if not self.parser.has_section(self.section_name): 61 self.create_section() 62 def create_section(self): 63 pass 64 65 50 66 if __name__=="__main__": 51 67 pass
