Skip to content

Commit

Permalink
clean up after lion :P
Browse files Browse the repository at this point in the history
  • Loading branch information
megies committed Feb 27, 2014
1 parent 1b2fc97 commit a628ac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion obspy/seg2/seg2.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def is_good_char(c):
return c in ('0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMN'
'OPQRSTUVWXYZ!"#$%&\'()*+,-./:; <=>?@[\\]^_`{|}~ ')

strings = [filter(is_good_char,_i) for _i in strings if len(_i) >= 3]
strings = [filter(is_good_char, _i) for _i in strings if len(_i) >= 3]
# Every string has the structure OPTION<SPACE>VALUE. Write to
# stream.stats attribute.
for string in strings:
Expand Down

0 comments on commit a628ac0

Please sign in to comment.