Skip to content
Snippets Groups Projects
Commit 8819072a authored by Armin Rigo's avatar Armin Rigo
Browse files

Add the HTML file we use to redirect from bugs.pypy.org

parent e0c4dad6
No related branches found
No related tags found
No related merge requests found
<html>
<body>
<h1>PyPy Issue tracker</h1>
<p>The issue tracker for PyPy moved here:
<a href="https://bitbucket.org/pypy/pypy/issues?status=new&status=open">https://bitbucket.org/pypy/pypy/issues</a></p>
<p>You should be redirected automatically.</p>
<script type="text/javascript">
go_to = "https://bitbucket.org/pypy/pypy/issues?status=new&status=open";
re = /[/]issue([0123456789]+)/g;
if (tokens = re.exec(document.location.href)) {
num = tokens[1];
go_to = "https://bitbucket.org/pypy/pypy/issue/" + num + "/";
}
document.location.href = go_to;
</script>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment