This commit is contained in:
Jonas Forsberg 2021-10-14 15:34:00 +02:00
parent 6a872f4a0f
commit 7a8c4d4da6
No known key found for this signature in database
GPG Key ID: F2E9818C70350CC9
2 changed files with 4 additions and 4 deletions

View File

@ -425,10 +425,10 @@
</packing> </packing>
</child> </child>
<child> <child>
<object class="GtkLabel" id="lbl_service_chronyd1"> <object class="GtkLabel" id="lbl_service_hostapd">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">False</property> <property name="can_focus">False</property>
<property name="label" translatable="yes">???</property> <property name="label" translatable="yes">hostapd</property>
<property name="width_chars">10</property> <property name="width_chars">10</property>
<property name="xalign">0</property> <property name="xalign">0</property>
</object> </object>

View File

@ -62,9 +62,9 @@ class Main:
print(config) print(config)
try: try:
self.lan_nic = localconfig["network"]["interface"]["internal"] self.lan_nic = localconfig["network"]["interface"]["bridge"]
except KeyError: except KeyError:
self.lan_nic = config["network"]["interface"]["internal"] self.lan_nic = config["network"]["interface"]["bridge"]
try: try:
self.wan_nic = localconfig["network"]["interface"]["external"] self.wan_nic = localconfig["network"]["interface"]["external"]
except KeyError: except KeyError: