Show
Ignore:
Timestamp:
09/19/08 23:14:30 (4 months ago)
Author:
Christoph Haas <email@…>
Parents:
a1916220564edbcad05f66aa29e659b8bc26079a
Children:
a3601530b07c909083f300d2b48d7b15b095847c
git-committer:
Christoph Haas <email@christoph-haas.de> / 2008-09-19T23:14:30Z+0200
Message:

Moving url_for to routes (rails is deprecated)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • debexpo/plugins/__init__.py

    r225a46 rbbb325  
    7878            Severity of the result. 
    7979        """ 
     80        if data is None: 
     81            data = self.outcomes.get(outcome)['name'] 
    8082        self.result.append(PluginResult(from_plugin=self.name, outcome=outcome, 
    8183            data=data, severity=severity)) 
     
    9597 
    9698        """ 
     99        if data is None: 
     100            data = self.outcomes.get(outcome)['name'] 
    97101        self.result.append(PluginResult(from_plugin=self.name, outcome=outcome, 
    98102            data=data, severity=severity)) 
     
    148152        """ 
    149153        return self.severity >= constants.PLUGIN_SEVERITY_CRITICAL 
     154