mirror of
https://github.com/gryf/wicd.git
synced 2026-03-27 06:23:32 +01:00
Make configfile sorted
This commit is contained in:
@@ -210,7 +210,7 @@ class ConfigManager(RawConfigParser):
|
||||
def write(self):
|
||||
""" Writes the loaded config file to disk. """
|
||||
in_this_file = []
|
||||
for sname in self.sections():
|
||||
for sname in sorted(self.sections()):
|
||||
fname = self.get_option(sname, '_filename_')
|
||||
if fname and fname != self.config_file:
|
||||
# Write sections from other files
|
||||
|
||||
Reference in New Issue
Block a user