diff options
author | Runxi Yu <me@runxiyu.org> | 2024-08-20 08:00:00 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-08-20 08:00:00 +0800 |
commit | 4b681153d42c911b2bfa14e3e8587e4ac8063e7c (patch) | |
tree | be4bbdebedb0829184e8ef5671203de1c2c4ea40 | |
parent | More ps.py stuff (diff) | |
download | tooch-master.tar.gz tooch-master.zip |
-rw-r--r-- | _/ps.py | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -37,9 +37,11 @@ while True: + "Content-Transfer-Encoding: base64\r\n" + "\r\n" + base64.standard_b64encode( - ("<style>%s</style>" % open("screen.css").read() + t).encode( - "utf-8" - ) + ( + "<style>body{min-width:60rem;}%s</style>" + % open("screen.css").read() + + t + ).encode("utf-8") ).decode("utf-8", "error") ) p.close() |