Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit 6aeec83

Browse files
committed
Fixed a little problem
1 parent 49f900c commit 6aeec83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bot/utils/tools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22
from ctypes import CDLL, c_char_p
33

4-
spammer = CDLL("./private/spammer.so") if not sys.platform.startswith('win') else CDLL("./shared/spammer.dll")
4+
spammer = CDLL("./shared/spammer.so") if not sys.platform.startswith('win') else CDLL("./shared/spammer.dll")
55
spammer.SendDirectMessages.argtypes = [c_char_p, c_char_p]
66
spammer.SendChannelMessages.argtypes = [c_char_p, c_char_p, c_char_p]
77

0 commit comments

Comments
 (0)