Description: Ignore the depreciation warning that popen2 will raise when it is imported. Pending conversion to subprocess module. Author: Dave Walker (Daviey) Bug: https://launchpad.net/bugs/655548 --- a/ocfs2console/ocfs2console +++ b/ocfs2console/ocfs2console @@ -13,6 +13,11 @@ # import warnings warnings.filterwarnings("error") + +# Ignore the depreciation warning that popen2 will raise when it is imported. +# FIXME: Pending conversion to subprocess module. +warnings.simplefilter("ignore", DeprecationWarning) + try: import gtk except Exception, e: