1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 15:39:43 +00:00

update error message

This commit is contained in:
deadc0de6
2017-12-23 19:26:24 +01:00
parent 9a0a90fc17
commit b5746700a6

13
dotdrop/dotdrop.py Executable file → Normal file
View File

@@ -15,12 +15,19 @@ try:
except:
errmsg = '''
Dotdrop has been updated to be included in pypi and
the way it needs to be called has changed.
the way it needs to be called has slightly changed.
First update dotdrop:
First get the latest version of dotdrop:
$ git submodule update --init --recursive
And then re-run the bootstrap script:
And then re-run the bootstrap script to update \"dotdrop.sh\":
$ ./dotdrop/bootstrap.sh
Instead of calling dotdrop directly like this:
$ python3 dotdrop/dotdrop/dotdrop.py ...
Call it like this:
$ PYTHONPATH=dotdrop python3 -m dotdrop.dotdrop ...
See TODO
'''
print(errmsg)
sys.exit(1)