.stripped() would result in error

This commit is contained in:
Eric Hansen 2013-05-22 09:16:49 -04:00
parent d0bba87cdd
commit 85fd14f47f

View file

@ -24,7 +24,7 @@ def _extract_data(data, kind):
if not begin_headers and 'BEGIN PGP %s' % kind in line:
begin_headers = True
continue
if begin_headers and line.stripped() == '':
if begin_headers and line.strip() == '':
begin_data = True
continue
if 'END PGP %s' % kind in line: