I don't know how to indent

This commit is contained in:
Andrew McManus 2021-07-26 21:45:33 -04:00
parent a661d33698
commit 4e4911e0b5

View File

@ -404,16 +404,16 @@ class Server:
self.stop_threaded_server()
else:
wasStarted = False
if len(websocket_helper.clients) > 0:
# There are clients
self.check_update()
message = '<a data-id="'+self.server_id+'" class=""> UPDATING...</i></a>'
websocket_helper.broadcast('update_button_status', {
'isUpdating': self.check_update(),
'server_id': self.server_id,
'wasRunning': wasStarted,
'string': message
})
if len(websocket_helper.clients) > 0:
# There are clients
self.check_update()
message = '<a data-id="'+self.server_id+'" class=""> UPDATING...</i></a>'
websocket_helper.broadcast('update_button_status', {
'isUpdating': self.check_update(),
'server_id': self.server_id,
'wasRunning': wasStarted,
'string': message
})
backup_dir = os.path.join(self.settings['path'], 'crafty_executable_backups')
#checks if backup directory already exists
if os.path.isdir(backup_dir):