1
0
Fork 0

gui: fixed inconsistent tabs and spaces, introduced by #516

Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
This commit is contained in:
Jaroslav Škarvada 2023-08-17 15:17:15 +02:00
parent 03375968cd
commit e047f7ad5e
No known key found for this signature in database
GPG key ID: D8E1C00E076E840B

View file

@ -249,10 +249,10 @@ class Base(object):
self.manager.get_profile(self.controller.active_profile())
else:
self.active_profile = None
try:
self._gobj('summaryProfileName').set_text(self.active_profile.name)
except:
self.error_dialog('No active profile set', '')
try:
self._gobj('summaryProfileName').set_text(self.active_profile.name)
except:
self.error_dialog('No active profile set', '')
try:
self._gobj('summaryIncludedProfileName').set_text(self.active_profile.options['include'
])