Skip to content

Commit 6f1b3d3

Browse files
authored
Fixed a typo (#59)
1 parent b50b81a commit 6f1b3d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openrgb/network.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,9 @@ def check_version(self, packet_type: utils.PacketType):
254254
utils.PacketType.REQUEST_SAVE_PROFILE,
255255
utils.PacketType.REQUEST_LOAD_PROFILE,
256256
utils.PacketType.REQUEST_DELETE_PROFILE):
257-
raise utils.SDKVersionError("Profile controls not supported on protoocl versions < 2. You probably need to update OpenRGB")
257+
raise utils.SDKVersionError("Profile controls not supported on protocol versions < 2. You probably need to update OpenRGB")
258258
elif self._protocol_version < 3 and packet_type == utils.PacketType.RGBCONTROLLER_SAVEMODE:
259-
raise utils.SDKVersionError("Saving modes not supported on protoocl versions < 3. You probably need to update OpenRGB")
259+
raise utils.SDKVersionError("Saving modes not supported on protocol versions < 3. You probably need to update OpenRGB")
260260

261261
@property
262262
def connected(self) -> bool:

0 commit comments

Comments
 (0)