Skip to content

Commit

Permalink
Merge pull request #84 from dimosped/patch-1
Browse files Browse the repository at this point in the history
fix saving a new user config
  • Loading branch information
kraanzu authored Mar 16, 2024
2 parents f255896 + 526408d commit 735e9c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 3.1.2

## Fixed
- Fix bug when creating/saving a new user config

## 3.1.1

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion smassh/src/parser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _create_user_config(self) -> None:
Creates a new config
"""

self.config_path.makedir(parents=True, exist_ok=True)
self.config_path.mkdir(parents=True, exist_ok=True)
self.save()

def get(self, data: str) -> Any:
Expand Down

0 comments on commit 735e9c1

Please sign in to comment.