Changeset 129

Show
Ignore:
Timestamp:
04/04/04 14:19:20 (4 years ago)
Author:
ug
Message:

Fix GC bug

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 05/devel/v.py

    r116 r129  
    968968        s1 = cursor.transcode('GC',node) 
    969969        if s1: 
    970             s1 = replace(gc, '\n\r', ' ') 
    971             s1 = replace(gc, '\r\n', ' ') 
    972             s1 = replace(gc, '\r', ' ') 
    973             s1 = replace(gc, '\n', ' ') 
     970            s1 = replace(s1, '\n\r', ' ') 
     971            s1 = replace(s1, '\r\n', ' ') 
     972            s1 = replace(s1, '\r', ' ') 
     973            s1 = replace(s1, '\n', ' ') 
    974974             
    975             s1.append(gc
     975            t.append(s1
    976976 
    977977        self.gameinfo.config(state=NORMAL)