This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
J1147
/
CoW
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fix: create tmpdir
master
lanvent
1 year ago
parent
6bd1242d43
commit
bf4ae9a051
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
common/tmp_dir.py
+ 1
- 1
common/tmp_dir.py
View File
@@ -12,7 +12,7 @@ class TmpDir(object):
def __init__(self):
pathExists = os.path.exists(self.tmpFilePath)
if not pathExists
and conf().get('speech_recognition') == True
:
if not pathExists:
os.makedirs(self.tmpFilePath)
def path(self):
Write
Preview
Loading…
Cancel
Save