From 441c20491c910e0fdd33fab8ceaf7b60bf0237ba Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sun, 8 Nov 2009 17:22:57 +0000 Subject: [PATCH] Fix printing info, help, etc.. on the command line --- ChangeLog | 1 + deluge/ui/console/main.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8fa1f046e..61a465e4a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -16,6 +16,7 @@ * Make the delete key work * Allow ~ to be used in the path in the add command * Allow commands that are .pyc files to be used + * Fix printing info, help, etc.. on the command line === Deluge 1.2.0_rc3 (01 November 2009) === ==== Core ==== diff --git a/deluge/ui/console/main.py b/deluge/ui/console/main.py index 749f8d826..afbe6a7ac 100644 --- a/deluge/ui/console/main.py +++ b/deluge/ui/console/main.py @@ -249,7 +249,7 @@ class ConsoleUI(component.Component): """ self.batch_write = batch - if not batch: + if not batch and self.interactive: self.screen.refresh() def write(self, line):