Fixed splitting error

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2009-11-10 20:59:09 +01:00
parent a4bafc4710
commit 63d7ad01eb

View file

@ -56,7 +56,7 @@ for cipher_file in cipher_files:
if hold:
hold = False
# We're optimising for size.
elif not re.match ("(run_selftests|selftest|_gcry_aes_c.._..c|_gcry_[a-z0-9]*_hash_buffer)", line) is None:
if not re.match ("(run_selftests|selftest|_gcry_aes_c.._..c|_gcry_[a-z0-9]*_hash_buffer)", line) is None:
skip = True
fname = re.match ("[a-zA-Z0-9_]*", line).group ()
chmsg = "(%s): Removed." % fname