On Ubuntu paths don't work in os.chdir, use strings
parent
4e33f9626f
commit
5bce34d195
|
@ -11,8 +11,8 @@ import pathlib
|
||||||
|
|
||||||
|
|
||||||
DBFILE = 'tmp.db'
|
DBFILE = 'tmp.db'
|
||||||
DBOUTPUT_PATH = pathlib.Path().absolute().parent
|
DBOUTPUT_PATH = str(pathlib.Path().absolute().parent)
|
||||||
DATA_PATH = pathlib.Path().absolute().parent / 'data'
|
DATA_PATH = str(pathlib.Path().absolute().parent / 'data')
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Reference in New Issue