Changeset 150:258f2cc2cf12

Show
Ignore:
Timestamp:
08/02/07 18:12:08 (16 months ago)
Author:
rage@…
Children:
154:58699db94652, 155:bca9070bf756
Message:

fix a missing import

Location:
xap
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • xap/model.py

    r140 r150  
    22from settings import SQLURI 
    33from sqlalchemy import * 
    4  
    5 curdir = os.path.dirname(__file__) 
    6 if curdir == '': 
    7     curdir = '.' 
    8  
    9 curdir = os.path.realpath(curdir) 
    104 
    115sql_db = create_engine(SQLURI) 
  • xap/xapindexer.py

    r148 r150  
    66from tokenizer import tokenize 
    77from settings import DB_FILE 
     8 
     9from model import index_data, remove_data 
    810 
    911def xap_read_write():