From 59e98ae1c5b59ff7636f52780dd6018b11dfe391 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Mon, 10 Mar 2003 17:36:04 +0000 Subject: _bdecode(): Remove redundant check. --- Lib/email/Utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/email/Utils.py b/Lib/email/Utils.py index 28b4459..49232f7 100644 --- a/Lib/email/Utils.py +++ b/Lib/email/Utils.py @@ -66,8 +66,6 @@ def _identity(s): def _bdecode(s): - if not s: - return s # We can't quite use base64.encodestring() since it tacks on a "courtesy # newline". Blech! if not s: -- cgit v0.12