From 93468f342a1c78b9545569d5dc820cf155a46536 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Wed, 25 Nov 2009 18:23:55 +0000 Subject: [PATCH] Set batch_write to False in __init__ --- deluge/ui/console/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deluge/ui/console/main.py b/deluge/ui/console/main.py index afbe6a7ac..11d74fee4 100644 --- a/deluge/ui/console/main.py +++ b/deluge/ui/console/main.py @@ -141,6 +141,8 @@ class ConsoleUI(component.Component): def __init__(self, args=None): component.Component.__init__(self, "ConsoleUI", 2) + self.batch_write = False + try: locale.setlocale(locale.LC_ALL, '') self.encoding = locale.getpreferredencoding()