We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The file at ./modules/http_host/http_host_lib/shared.py has a single line with ../../tile_gen/tile_gen_lib/shared.py.
./modules/http_host/http_host_lib/shared.py
../../tile_gen/tile_gen_lib/shared.py
This causes an error to occur:
Command failed: sudo -S -p '[sudo] password: ' bash -c "/data/ofm/venv/bin/python -u /data/ofm/http_host/bin/http_host.py sync --force" Error: Traceback (most recent call last): File "/data/ofm/http_host/bin/http_host.py", line 8, in <module> from http_host_lib.btrfs import ( File "/data/ofm/http_host/bin/http_host_lib/btrfs.py", line 6, in <module> from http_host_lib.shared import get_versions_for_area File "/data/ofm/http_host/bin/http_host_lib/shared.py", line 1 ../../tile_gen/tile_gen_lib/shared.py ^ SyntaxError: invalid syntax
The fix: Copy shared.py from the modules/tile_gen/tile_gen_lib folder on your local and overwrite shared.py in modules/http_host/http_host_lib.
shared.py
modules/tile_gen/tile_gen_lib
modules/http_host/http_host_lib
Other issues:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The file at
./modules/http_host/http_host_lib/shared.py
has a single line with../../tile_gen/tile_gen_lib/shared.py
.This causes an error to occur:
The fix:
Copy
shared.py
from themodules/tile_gen/tile_gen_lib
folder on your local and overwriteshared.py
inmodules/http_host/http_host_lib
.Other issues:
The text was updated successfully, but these errors were encountered: