Skip to content

Commit 5807107

Browse files
committed
lowercased list name
1 parent 9fc8aec commit 5807107

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
*.pyc
22
*.swp
3+
*.vscode
34
__pycache__/
45
virtenv/*
56
thd/*

m3_sync.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,8 @@ def get_list(self, name):
124124
get list with additional prefix if enabled
125125
"""
126126
prefix = self.sync['list_prefix']
127+
# lowercased
128+
name = name.lower()
127129
if not prefix:
128130
return name
129131
return "{0}{1}".format(prefix, name)

0 commit comments

Comments
 (0)