Skip to content

Commit 4517bdf

Browse files
authored
Merge pull request #722 from ryanthomasharrison/fix-class-name-typo
Fixed typo in class name UnknownEncryptionStandardException
2 parents fac8b61 + fdb2547 commit 4517bdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pyshark/capture/capture.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class TSharkCrashException(Exception):
2828
pass
2929

3030

31-
class UnknownEncyptionStandardException(Exception):
31+
class UnknownEncryptionStandardException(Exception):
3232
pass
3333

3434

@@ -92,7 +92,7 @@ def __init__(self, display_filter=None, only_summaries=False, eventloop=None,
9292
self.encryption = (decryption_key, encryption_type.lower())
9393
else:
9494
standards = ", ".join(self.SUPPORTED_ENCRYPTION_STANDARDS)
95-
raise UnknownEncyptionStandardException(f"Only the following standards are supported: {standards}.")
95+
raise UnknownEncryptionStandardException(f"Only the following standards are supported: {standards}.")
9696

9797
def __getitem__(self, item):
9898
"""Gets the packet in the given index.

0 commit comments

Comments
 (0)