Skip to content

Commit

Permalink
Fix Micka's About URL in wait_for_deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jirik committed Mar 16, 2020
1 parent ed8cb83 commit 5cfe1c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## v1.1.8
2020-03-16
- Treat attribute names in SLD (aka 'launder'), [#45](https://github.com/jirik/layman/issues/45)
- Fix Micka's About URL in wait_for_deps

## v1.1.7
2020-03-09
Expand Down
4 changes: 2 additions & 2 deletions src/wait_for_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import time
import traceback
from urllib.parse import urlparse
from urllib.parse import urljoin


settings = importlib.import_module(os.environ['LAYMAN_SETTINGS_MODULE'])
Expand Down Expand Up @@ -96,7 +96,7 @@ def main():


# Micka
micka_url = urlparse(settings.CSW_URL)._replace(path="/about").geturl()
micka_url = urljoin(settings.CSW_URL, "about")
wait_for_msg = f"Micka, url={micka_url}"
print(f"Waiting for {wait_for_msg}")
while True:
Expand Down

0 comments on commit 5cfe1c7

Please sign in to comment.