(self, ip)
| 445 | |
| 446 | class ipaddress_view: |
| 447 | def GET(self, ip): |
| 448 | return render_template("admin/ip/view", ip) |
| 449 | |
| 450 | def POST(self, ip): |
| 451 | i = web.input(changesets=[], comment="Revert", action="revert") |
nothing calls this directly
no test coverage detected