mirror of
https://github.com/craigerl/aprsd.git
synced 2025-07-07 03:15:15 -04:00
remove fortune white space
This commit is contained in:
parent
83f42dd7b7
commit
ca05676c98
@ -32,6 +32,12 @@ class FortunePlugin(plugin.APRSDPluginBase):
|
|||||||
timeout=3,
|
timeout=3,
|
||||||
universal_newlines=True,
|
universal_newlines=True,
|
||||||
)
|
)
|
||||||
|
output = (
|
||||||
|
output.replace("\r", "")
|
||||||
|
.replace("\n", "")
|
||||||
|
.replace(" ", "")
|
||||||
|
.replace("\t", " ")
|
||||||
|
)
|
||||||
except subprocess.CalledProcessError as ex:
|
except subprocess.CalledProcessError as ex:
|
||||||
reply = "Fortune command failed '{}'".format(ex.output)
|
reply = "Fortune command failed '{}'".format(ex.output)
|
||||||
else:
|
else:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user