From: <sir...@us...> - 2003-04-02 19:44:35
|
Update of /cvsroot/btplusplus/BT++/src/TabTrans In directory sc8-pr-cvs1:/tmp/cvs-serv29947/src/TabTrans Modified Files: GridTable.py Log Message: - Fixed: Downloads wouldn't continue uploading after finishing download. Index: GridTable.py =================================================================== RCS file: /cvsroot/btplusplus/BT++/src/TabTrans/GridTable.py,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** GridTable.py 31 Mar 2003 14:15:21 -0000 1.9 --- GridTable.py 2 Apr 2003 19:44:27 -0000 1.10 *************** *** 1,3 **** --- 1,4 ---- from os import path, rename + from time import sleep from wxPython.wx import * *************** *** 7,11 **** import Renderer ! from Managers import ManagerDown class GridTable: --- 8,12 ---- import Renderer ! from Managers import ManagerDown, ManagerUp class GridTable: *************** *** 147,152 **** loader.Hashed = true loader.Finished = true ! loader.Obj['Storage'].close() ! loader.UpdateStatus( fractionDone = 1, timeEst = 0, --- 148,152 ---- loader.Hashed = true loader.Finished = true ! loader.UpdateStatus( fractionDone = 1, timeEst = 0, *************** *** 171,175 **** if new == None: return ! if Config.Get('Download', 'KeepUpload'): new.StartDownload() --- 171,175 ---- if new == None: return ! if Config.Get('Download', 'KeepUpload'): new.StartDownload() |