Skip to content

Commit

Permalink
Merge pull request #8 from rabix/bugfix_list_config_files
Browse files Browse the repository at this point in the history
list_config_files returns list
  • Loading branch information
pavlemarinkovic authored Aug 28, 2024
2 parents 8035c01 + e6a7bf8 commit 64d130b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wrabbit/parser/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def list_config_files(path: str) -> list:
for file in os.listdir(path):
if file.lower().endswith('.config'):
paths.append(os.path.join(path, file))
return paths or None
return paths


def find_config_section(file_path: str, section: str) -> str:
Expand Down
2 changes: 1 addition & 1 deletion wrabbit/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.1"
__version__ = "0.2.2"

0 comments on commit 64d130b

Please sign in to comment.