This commit is contained in:
Shou 2022-03-26 00:37:01 +01:00
parent 90b29a80a0
commit b2856467f3
3 changed files with 9 additions and 2 deletions

View file

@ -1,6 +1,11 @@
# Changelog
(This document uses YYYY-MM-DD)
## [v2.2.1] - 2022-03-26
### Fixed
- Crash when datadir is missing :"3
## [v2.2] - 2022-03-24
### Added

View file

@ -88,6 +88,8 @@ import ostools
# plowing on. :o)
# ~Lex
_datadir = ostools.getDataDir()
if not os.path.isdir(_datadir):
os.makedirs(_datadir)
# See, what I've done here is that _datadir is '' if we're not on OSX, so the
# concatination is the same as if it wasn't there.
# UPDATE 2011-11-28 <Kiooeht>:

View file

@ -1,2 +1,2 @@
_pcVersion = "Alt. v2.2"
buildVersion = "v2.2"
_pcVersion = "Alt. v2.2.1"
buildVersion = "v2.2.1"