From: Oleg Broytman Date: Sat, 24 Feb 2024 13:12:21 +0000 (+0300) Subject: Style: Fix `flake8` error E111 indentation is not a multiple of 4 X-Git-Tag: 5.1.0~14 X-Git-Url: https://git.phdru.name/?p=xsetbg.git;a=commitdiff_plain;h=a444a56ed3c1839383d0c5b8de91887394c7c662 Style: Fix `flake8` error E111 indentation is not a multiple of 4 --- diff --git a/xsetbg-wsgi.py b/xsetbg-wsgi.py index f4b7873..f0ec153 100755 --- a/xsetbg-wsgi.py +++ b/xsetbg-wsgi.py @@ -13,14 +13,14 @@ from xsetbg import change as _change # get httpd settings from config if xsetbg_conf.has_option("httpd", "host"): - host = xsetbg_conf.get("httpd", "host") + host = xsetbg_conf.get("httpd", "host") else: - host = 'localhost' + host = 'localhost' if xsetbg_conf.has_option("httpd", "port"): - port = xsetbg_conf.getint("httpd", "port") + port = xsetbg_conf.getint("httpd", "port") else: - error("Config must specify a port to listen. Abort.") + error("Config must specify a port to listen. Abort.") commands = {}