Skip to content

Commit da951ad

Browse files
committed
arespond.py 0.1.2: fix mixed spaces and tabs for indentation
1 parent 05d6fa6 commit da951ad

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

python/arespond.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,16 @@
2323
#
2424
# History:
2525
#
26+
# - 2022-01-25, Sébastien Helleu <[email protected]>
27+
# 0.1.2 - Fix mixed spaces and tabs for indentation
2628
# - 2020-09-06, mumixam
2729
# 0.1.1 - Added supported for python3 while keeping support for python2
2830
# - fixed issue with command not being executed in the right buffer
2931
# - renamed option 'muted' to 'enabled' so its more intuitive
3032

3133
SCR_NAME = "arespond"
3234
SCR_AUTHOR = "Stephan Huebner <[email protected]>"
33-
SCR_VERSION = "0.1.1"
35+
SCR_VERSION = "0.1.2"
3436
SCR_LICENSE = "GPL3"
3537
SCR_DESC = "An autoresponder (sending a notice on other users' messages)"
3638
SCR_COMMAND = "arespond"
@@ -93,8 +95,8 @@ def fn_command(data, buffer, args):
9395
return w.WEECHAT_RC_OK
9496

9597
def alert(myString):
96-
w.prnt("", myString)
97-
return
98+
w.prnt("", myString)
99+
return
98100

99101
def fn_configchange(data, option, value):
100102
global settings

0 commit comments

Comments
 (0)