minor bug fix

This commit is contained in:
imayushsaini 2021-12-02 13:44:49 +05:30
parent 33d6f40a97
commit 9e3e1af8e0
4 changed files with 7 additions and 3 deletions

View file

@ -2,5 +2,9 @@
"61":{ "61":{
"log":"msg here \n about updates", "log":"msg here \n about updates",
"time":"1 Dec 2021" "time":"1 Dec 2021"
},
"62":{
"log":"bug fix in logger.py",
"time":"2 DEC 2021 1:40PM IST"
} }
} }

View file

@ -57,11 +57,11 @@ class dumplogs(threading.Thread):
elif self.type=='joinlog': elif self.type=='joinlog':
f.open(serverdata+"joining.log","a+") f=open(serverdata+"joining.log","a+")
elif self.type=='cmndlog': elif self.type=='cmndlog':
f.open(serverdata+"cmndusage.log","a+") f=open(serverdata+"cmndusage.log","a+")
else: else:
f=open(serverdata+"logs.log","a+") f=open(serverdata+"logs.log","a+")

View file

@ -4,7 +4,7 @@ import _thread
import urllib.request import urllib.request
from efro.terminal import Clr from efro.terminal import Clr
import json import json
VERSION=61 VERSION=62
def check(): def check():
_thread.start_new_thread(updateProfilesJson,()) _thread.start_new_thread(updateProfilesJson,())