Comment 5 for bug 903484

Revision history for this message
Roland Dreier (roland.dreier) wrote :

Actually the code in question is

            if self.__disable_pat:
                cmdline_default_params['nopat'] = None
            else:
                del cmdline_default_params['nopat']

and presumably __disable_pat is not set and cmdline_default_params doesn't have a 'nopat' entry, so we're trying to delete an entry that doesn't exist?