Skip to content

Commit 05d6fa6

Browse files
committed
alternatetz.py 0.4: remove trailing tabs
1 parent c108c54 commit 05d6fa6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

python/alternatetz.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
# plugin to get alternate timezones in a weechat bar
88
#
99
# Changelog:
10+
# 0.4 Sébastien Helleu <[email protected]>
11+
# Remove trailing tabs
1012
# 0.3 Pol Van Aubel <[email protected]>
1113
# Fix tab/space usage for Python3 compatibility
1214
# 0.2 Added help, and multiple timezeones
@@ -19,15 +21,15 @@
1921

2022
SCRIPT_NAME = "alternatetz"
2123
SCRIPT_AUTHOR = "Chmouel Boudjnah <[email protected]>"
22-
SCRIPT_VERSION = "0.3"
24+
SCRIPT_VERSION = "0.4"
2325
SCRIPT_LICENSE = "GPL3"
2426
SCRIPT_DESC = "Display Alternate Time from different Timezones"
2527

2628
SCRIPT_COMMAND = 'alternatetz'
2729

28-
OPTIONS = {
29-
'timezone' : ('GMT', 'list of timezones to display. The list is comprised of space separated list timezones using the Olson tz database'),
30-
'timeformat' : ('%H:%M', 'strftime compatible format')
30+
OPTIONS = {
31+
'timezone': ('GMT', 'list of timezones to display. The list is comprised of space separated list timezones using the Olson tz database'),
32+
'timeformat': ('%H:%M', 'strftime compatible format')
3133
}
3234

3335
def alternatetz_item_cb(*kwargs):

0 commit comments

Comments
 (0)