Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

Commit

Permalink
Bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
2press committed Aug 7, 2018
1 parent 6cc93b0 commit ded40be
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Changelog


## v0.0.2 (2018-08-07)

### New

* Initial Build.


2 changes: 1 addition & 1 deletion hwctool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

logger = logging.getLogger('hwctool')

__version__ = "0.0.1"
__version__ = "0.0.2"
__latest_version__ = __version__
__new_version__ = False

Expand Down
4 changes: 4 additions & 0 deletions hwctool/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ def loadSettings():

initConfig(configFile())

# Creating directories if not exisiting
if not os.path.exists(getAbsPath(dataDir)):
os.makedirs(getAbsPath(dataDir))

loadNightbotCommands()

# Creating directories if not exisiting
Expand Down

0 comments on commit ded40be

Please sign in to comment.