From 26f71f8fc892cd90da394c0f3c18f3373f145858 Mon Sep 17 00:00:00 2001 From: Skillet Date: Mon, 8 May 2023 14:20:16 -0400 Subject: [PATCH] update to include "extgrps" folder in grp name search --- simpleFileServer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/simpleFileServer.py b/simpleFileServer.py index 8c6b963..bf778ec 100644 --- a/simpleFileServer.py +++ b/simpleFileServer.py @@ -23,6 +23,7 @@ class serveRA(http.server.SimpleHTTPRequestHandler): grpfile += f"extgrps/{grpName}.cfg" else: print("could not find admins file!", file=stderr) + return try: file = open(grpfile, 'rb') self.copyfile(file, self.wfile)