# HG changeset patch # User Jeff Hammel # Date 1324413880 28800 # Node ID 672addc0c4be77c3555169db50368ff11d4e6a85 # Parent 79a43cbdf584019326184525566636977707b444 more fixup diff -r 79a43cbdf584 -r 672addc0c4be clwapp/clwapp.py --- a/clwapp/clwapp.py Tue Dec 20 11:34:10 2011 -0800 +++ b/clwapp/clwapp.py Tue Dec 20 12:44:40 2011 -0800 @@ -54,7 +54,7 @@ args = self.command + self.request.GET.keys() process = subprocess.Popen(args, stdout=subprocess.PIPE) output = process.communicate()[0] - output = output.decode('utf-8', errors='ignore') + output = output.decode('utf-8', 'ignore') title = ' '.join([os.path.basename(args[0])] + args[1:]) return self.get_response("""%s
 %s