My regular expression in Python below doesn't see the pattern. Can you please tell me what I am doing wrong here?
================
import re
l = 'rootfs on / type rootfs (rw xyz'
m_obj = re.match(r'on / type .*? \(rw', l)
if m_obj:
print "Found!"
else:
print "Not found!"
=================
Thanks