kmisc 2.1.113__tar.gz → 2.1.114__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {kmisc-2.1.113 → kmisc-2.1.114}/PKG-INFO +1 -1
- {kmisc-2.1.113 → kmisc-2.1.114}/kmisc/__init__.py +4 -2
- {kmisc-2.1.113 → kmisc-2.1.114}/kmisc.egg-info/PKG-INFO +1 -1
- {kmisc-2.1.113 → kmisc-2.1.114}/LICENSE +0 -0
- {kmisc-2.1.113 → kmisc-2.1.114}/README.md +0 -0
- {kmisc-2.1.113 → kmisc-2.1.114}/kmisc.egg-info/SOURCES.txt +0 -0
- {kmisc-2.1.113 → kmisc-2.1.114}/kmisc.egg-info/dependency_links.txt +0 -0
- {kmisc-2.1.113 → kmisc-2.1.114}/kmisc.egg-info/top_level.txt +0 -0
- {kmisc-2.1.113 → kmisc-2.1.114}/pyproject.toml +0 -0
- {kmisc-2.1.113 → kmisc-2.1.114}/setup.cfg +0 -0
- {kmisc-2.1.113 → kmisc-2.1.114}/setup.py +0 -0
@@ -2076,9 +2076,11 @@ def findPlanCfg(filename,find_name=None,default=False,original=False,date=None):
|
|
2076
2076
|
data=cat(filename)
|
2077
2077
|
if data is False:
|
2078
2078
|
return default
|
2079
|
-
if find_name
|
2079
|
+
if find_name:
|
2080
|
+
if isinstance(find_name,str):
|
2081
|
+
find_name=find_name.split(',')
|
2080
2082
|
out=[]
|
2081
|
-
for ff in find_name
|
2083
|
+
for ff in find_name:
|
2082
2084
|
found=False
|
2083
2085
|
for i in data.split('\n'):
|
2084
2086
|
if isinstance(i,str) and '=' in i:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|