# HG changeset patch
# User Nathann Cohen <nathann.cohen@gmail.com>
# Date 1350813756 -7200
# Node ID 09a8491cd6087f7e203abcbd1c74c800b0e3dd39
# Parent 4bf4480e8fd30e0cede481f174fa8630cf558133
broken method in sage.graphs.isgci
diff --git a/sage/graphs/isgci.py b/sage/graphs/isgci.py
a
|
b
|
|
634 | 634 | |
635 | 635 | from sage.misc.misc import SAGE_TMP |
636 | 636 | import urllib2 |
| 637 | import os.path |
637 | 638 | u = urllib2.urlopen('http://www.graphclasses.org/data.zip') |
638 | 639 | localFile = open(os.path.join(SAGE_TMP,'isgci.zip'), 'w') |
639 | 640 | localFile.write(u.read()) |