Merge pull request #234 from SecurityForUs/str_no_stripped

.stripped() would result in error
This commit is contained in:
Lance Stout 2013-05-22 10:19:52 -07:00
commit d9f595283a

View file

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