(self, section, option, value)
| 114 | os.remove(fileNameBak) |
| 115 | |
| 116 | def validate(self, section, option, value): |
| 117 | try: |
| 118 | return getattr(self, "validate_%s_%s" % (section, option))(value) |
| 119 | except AttributeError: |
| 120 | return True |
| 121 | |
| 122 | def validate_bitmessagesettings_maxoutboundconnections(self, value): |
| 123 | try: |