Skip to content

Commit cc75a5a

Browse files
committed
Fix: Setting Server.stopped to True in constructor
1 parent e3c83b4 commit cc75a5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_httpserver/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __init__(
7272
self.root_path = root_path
7373
if root_path in ["", "/"] and debug:
7474
_debug_warning_exposed_files(root_path)
75-
self.stopped = False
75+
self.stopped = True
7676

7777
self.debug = debug
7878

0 commit comments

Comments
 (0)