diff options
| author | 2019-02-09 17:50:40 +0000 | |
|---|---|---|
| committer | 2019-02-09 17:50:40 +0000 | |
| commit | 1ff2a00c485edf047d28381185fa355dcb0ffb78 (patch) | |
| tree | a09e6f6b893de6e8dd5ab47bb669221bc94d802a /modules/commands/outs.py | |
| parent | Split command StdOut/StdErr in to their own file (commands) (diff) | |
| signature | ||
Move StdOut/StdErr specific consts to outs.py (commands)
Diffstat (limited to 'modules/commands/outs.py')
| -rw-r--r-- | modules/commands/outs.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/commands/outs.py b/modules/commands/outs.py index 6d9efe38..935721ac 100644 --- a/modules/commands/outs.py +++ b/modules/commands/outs.py @@ -1,5 +1,9 @@ from src import utils +OUT_CUTOFF = 400 +STR_MORE = "%s (more...)" % utils.consts.RESET +STR_CONTINUED = "(...continued) " + class Out(object): def __init__(self, server, module_name, target, msgid, statusmsg): self.server = server |
