Преглед на файлове

testing a small fix

tags/v0.1
Ben Kurtovic преди 13 години
родител
ревизия
2b990cd580
променени са 2 файла, в които са добавени 6 реда и са изтрити 8 реда
  1. +5
    -6
      core/main.py
  2. +1
    -2
      irc/watcher.py

+ 5
- 6
core/main.py Целия файл

@@ -30,7 +30,7 @@ def irc_watcher(f_conn):
except:
traceback.print_exc()
time.sleep(5) # sleep a bit before restarting watcher
print "restarting watcher component..."
print "watcher has stopped; restarting component..."

def run():
global f_conn
@@ -42,9 +42,8 @@ def run():

frontend.main(f_conn)

w_conn.close()
f_conn.close()

if __name__ == "__main__":
try:
run()
finally:
f_conn.close()
w_conn.close()
run()

+ 1
- 2
irc/watcher.py Целия файл

@@ -21,10 +21,9 @@ def main(connection, f_conn):
read_buffer = str()

while 1:
try:
try:
read_buffer = read_buffer + connection.get()
except RuntimeError: # socket broke
print "socket has broken on watcher, restarting component..."
return

lines = read_buffer.split("\n")


Зареждане…
Отказ
Запис