diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 13:00:30 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 13:00:30 -0500 |
commit | e5e079faf29ee2aca056e7548b11a12d8905794b (patch) | |
tree | 91f92a17592a1359b9466eb58acd12cf559e4a0b /klippy/console.py | |
parent | dddfb681c737c5623dc270bf6c8e59fd3b13b092 (diff) | |
download | kutter-e5e079faf29ee2aca056e7548b11a12d8905794b.tar.gz kutter-e5e079faf29ee2aca056e7548b11a12d8905794b.tar.xz kutter-e5e079faf29ee2aca056e7548b11a12d8905794b.zip |
console: Wrap code to 80 columns
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/console.py')
-rwxr-xr-x | klippy/console.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/console.py b/klippy/console.py index 6d234f44..ee1b2331 100755 --- a/klippy/console.py +++ b/klippy/console.py @@ -144,8 +144,8 @@ class KeyboardReader: out += "\nAvailable artificial commands:" out += "\n ".join([""] + [n for n in sorted(self.local_commands)]) out += "\nAvailable local variables:" - out += "\n ".join([""] + ["%s: %s" % (k, v) - for k, v in sorted(self.eval_globals.items())]) + lvars = sorted(self.eval_globals.items()) + out += "\n ".join([""] + ["%s: %s" % (k, v) for k, v in lvars]) self.output(out) def command_HELP(self, parts): self.output(help_txt) |