Skip to content

Commit

Permalink
try traceback when Quintijn_installer fails...
Browse files Browse the repository at this point in the history
  • Loading branch information
quintijn committed Dec 31, 2020
1 parent 4dbd8bf commit 1fd66dd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
Temporary README.md
Temporary README.md

All Vocola stuff is now (2020-12-18) in the src/vocola2 directory (Doug/Quintijn)
7 changes: 7 additions & 0 deletions src/vocola2/_vocola_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"""

import sys
import traceback
import os # access to file information
import os.path # to parse filenames
import time # print time in messages
Expand Down Expand Up @@ -60,6 +61,11 @@
VocolaGrammarsDirecory = status.getVocolaGrammarsDirectory()
VocolaUserDirectory = status.getVocolaUserDirectory()
VocolaDirectory = status.getVocolaDirectory()
else:
VocolaGrammarsDirecory = ""
VocolaUserDirectory = ""
VocolaDirectory = ""

# print('VocolaEnabled: %s'% VocolaEnabled)
language = status.getLanguage()
if language != 'enx':
Expand All @@ -69,6 +75,7 @@
Quintijn_installer = False
VocolaEnabled = True
language = 'enx'
traceback.print_exc()

if thisDir and os.path.isdir(thisDir):
pass
Expand Down

0 comments on commit 1fd66dd

Please sign in to comment.