Changeset 3511

Show
Ignore:
Timestamp:
04/13/08 14:01:48 (8 months ago)
Author:
tcoulter
Message:

Small comment change.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trashtalkplugin/0.11/trashtalk/trashtalk.py

    r3510 r3511  
    134134        first = most_recent 
    135135         
    136         # See if the current link is already in the database for this ticket
     136        # Let's get a database connection
    137137        db = self.env.get_db_cnx() 
    138138        cursor = db.cursor() 
    139139         
     140        # See if the current link is already in the database for this ticket. 
    140141        cursor.execute('select * from incoming_links where ticket = %s and external_url = %s limit 1', (ticket, external_url)) 
    141142