home
·
contact
·
privacy
projects
/
ircplom
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
419253e
)
Minor code style fix.
author
Christian Heller
<c.heller@plomlompom.de>
Fri, 30 May 2025 12:23:12 +0000
(14:23 +0200)
committer
Christian Heller
<c.heller@plomlompom.de>
Fri, 30 May 2025 12:23:12 +0000
(14:23 +0200)
ircplom.py
patch
|
blob
|
history
diff --git
a/ircplom.py
b/ircplom.py
index 48bf8e97d01cf95aa7fb66a78c51e80639a4e40a..9107e1684a0cd4e117192c09f1f8585f1f924b1d 100755
(executable)
--- a/
ircplom.py
+++ b/
ircplom.py
@@
-85,7
+85,7
@@
class Terminal:
print(self._blessed.truncate(msg, self.size.x - offset.x), end='')
else:
len_padding = self.size.x - len_with_offset
- print(msg + (
f
' ' * len_padding), end='')
+ print(msg + (' ' * len_padding), end='')
def get_keypresses(self) -> Iterator[str]:
'''Loop through keypresses from terminal, collect what blessed ignores.