:"3
This commit is contained in:
parent
90b29a80a0
commit
b2856467f3
3 changed files with 9 additions and 2 deletions
|
@ -1,6 +1,11 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
(This document uses YYYY-MM-DD)
|
(This document uses YYYY-MM-DD)
|
||||||
|
|
||||||
|
## [v2.2.1] - 2022-03-26
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Crash when datadir is missing :"3
|
||||||
|
|
||||||
## [v2.2] - 2022-03-24
|
## [v2.2] - 2022-03-24
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -88,6 +88,8 @@ import ostools
|
||||||
# plowing on. :o)
|
# plowing on. :o)
|
||||||
# ~Lex
|
# ~Lex
|
||||||
_datadir = ostools.getDataDir()
|
_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
|
# 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.
|
# concatination is the same as if it wasn't there.
|
||||||
# UPDATE 2011-11-28 <Kiooeht>:
|
# UPDATE 2011-11-28 <Kiooeht>:
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
_pcVersion = "Alt. v2.2"
|
_pcVersion = "Alt. v2.2.1"
|
||||||
buildVersion = "v2.2"
|
buildVersion = "v2.2.1"
|
||||||
|
|
Loading…
Reference in a new issue