mirror of
https://github.com/barronwaffles/dwc_network_server_emulator.git
synced 2026-07-16 08:00:54 -05:00
Only count lines with data as for dls1 count
This commit is contained in:
parent
c9d525cc02
commit
4fc163ec75
|
|
@ -165,7 +165,7 @@ class NintendoNasHTTPServerHandler(BaseHTTPServer.BaseHTTPRequestHandler):
|
|||
list = open(dlcpath + "/_list.txt", "rb").read()
|
||||
list = self.filter_list(list, attr1, attr2, attr3)
|
||||
|
||||
count = list.strip().count("\r\n")
|
||||
count = self.get_file_count(list)
|
||||
|
||||
ret = "%d" % count
|
||||
|
||||
|
|
@ -289,6 +289,15 @@ class NintendoNasHTTPServerHandler(BaseHTTPServer.BaseHTTPRequestHandler):
|
|||
|
||||
return output
|
||||
|
||||
def get_file_count(self, data):
|
||||
file_count = 0
|
||||
|
||||
for line in data.splitlines():
|
||||
if line:
|
||||
file_count += 1
|
||||
|
||||
return file_count
|
||||
|
||||
if __name__ == "__main__":
|
||||
nas = NintendoNasServer()
|
||||
nas.start()
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user