Skip to content

Commit 3359668

Browse files
committed
Imported missing exception in module init, updated authors
1 parent a424d27 commit 3359668

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

adafruit_httpserver/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Socket based HTTP Server for CircuitPython
99
1010
11-
* Author(s): Dan Halbert
11+
* Author(s): Dan Halbert, Michał Pokusa
1212
1313
Implementation Notes
1414
--------------------
@@ -30,12 +30,14 @@
3030
require_authentication,
3131
)
3232
from .exceptions import (
33+
ServerStoppedError,
3334
AuthenticationError,
34-
BackslashInPathError,
35-
FileNotExistsError,
3635
InvalidPathError,
3736
ParentDirectoryReferenceError,
37+
BackslashInPathError,
3838
ResponseAlreadySentError,
39+
ServingFilesDisabledError,
40+
FileNotExistsError,
3941
)
4042
from .headers import Headers
4143
from .methods import (

0 commit comments

Comments
 (0)