Yardım hesap kayıt sistemi syserr intrologin.py

Konu sahibi bu konuda soru soruyor. Sorusu ile ilgili bilgisi olanların yanıtlamasını bekliyor.

nesterali

Üye
Üye
Mesaj
149
Beğeni
62
Puan
726
sistemi eklediğimde bu syserr ile karşılaştım çözümü nedir yardımcı olurmusunuz
Kod:
0803 04:23:00607 :: Traceback (most recent call last):

0803 04:23:00607 ::   File "introLogo.py", line 60, in OnUpdate

0803 04:23:00607 ::   File "networkModule.py", line 177, in SetLoginPhase

0803 04:23:00608 ::   File "system.py", line 130, in __pack_import

0803 04:23:00608 ::   File "
0803 04:23:00608 :: introLogin.py
0803 04:23:00608 :: ", line
0803 04:23:00608 :: 197
0803 04:23:00608 ::

0803 04:23:00608 ::    
0803 04:23:00608 :: self.matrixInputChanceCount = 0

0803 04:23:00608 ::    
0803 04:23:00608 :: ^

0803 04:23:00608 :: IndentationError
0803 04:23:00608 :: :
0803 04:23:00608 :: unexpected indent
0803 04:23:00608 ::
intologin.py 197. satırı altta belirttim
Python:
class LoginWindow(ui.ScriptWindow):

    IS_TEST = net.IsTest()

    def __init__(self, stream):
        print "NEW LOGIN WINDOW  ----------------------------------------------------------------------------"
        ui.ScriptWindow.__init__(self)
        net.SetPhaseWindow(net.PHASE_WINDOW_LOGIN, self)
        net.SetAccountConnectorHandler(self)
       
        self.curtain = uiPhaseCurtain.PhaseCurtain()
        self.curtain.speed = 0.3
        self.curtain.Hide()

        self.matrixInputChanceCount = 0     { 197. satır burası }
        self.lastLoginTime = 0
        self.inputDialog = None
        self.connectingDialog = None
        self.stream=stream
        self.isNowCountDown=False
        self.isStartError=False

        self.xServerBoard = 0
        self.yServerBoard = 0
       
        self.loadingImage = None
        self.loginnedServer = None
        self.loginnedChannel = None
        app.loggined = FALSE

        self.virtualKeyboard = None
        self.virtualKeyboardMode = "ALPHABET"
        self.virtualKeyboardIsUpper = False
        self.timeOutMsg = False
        self.timeOutOk = False
       
    def __del__(self):
        net.ClearPhaseWindow(net.PHASE_WINDOW_LOGIN, self)
        net.SetAccountConnectorHandler(0)
        ui.ScriptWindow.__del__(self)
        print "---------------------------------------------------------------------------- DELETE LOGIN WINDOW"
 
Geri
Üst