Skip to content

Commit

Permalink
Fixing the NTP placeholder so it at least doesn't explode
Browse files Browse the repository at this point in the history
  • Loading branch information
danielquinn committed Dec 15, 2015
1 parent b955a65 commit 58b1293
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ripe/atlas/tools/renderers/ntp.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from .base import Renderer as BaseRenderer
from .base import Result


class Renderer(BaseRenderer):

RENDERS = [BaseRenderer.TYPE_NTP]

def on_result(self, result, probes=None):
print("Not ready yet\n")
return Result("Not ready yet\n", result.probe_id)

0 comments on commit 58b1293

Please sign in to comment.