Ignore:
Timestamp:
08/01/11 16:58:55 (22 months ago)
Author:
R. Andrew Ohana <andrew.ohana@…>
Branch:
default
Message:

Trac #11640: 11640 - Removed references of DB_HOME in preference of SAGE_DATA

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sage/databases/db_class_polynomials.py

    r11748 r16055  
    2323from sage.rings.polynomial.polynomial_ring_constructor import PolynomialRing 
    2424 
    25 DB_HOME = '%s/kohel'%sage.misc.misc.SAGE_DATA 
     25dblocation = '%s/kohel'%sage.misc.misc.SAGE_DATA 
    2626 
    2727disc_length = 7 
     
    2929 
    3030def _dbz_to_integers(name): 
    31     file = '%s/%s'%(DB_HOME, name) 
     31    file = '%s/%s'%(dblocation, name) 
    3232    if not os.path.exists(file): 
    3333        raise RuntimeError, "Class polynomial database file %s not available"%file 
Note: See TracChangeset for help on using the changeset viewer.