mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix schema regex
This commit is contained in:
parent
483ba3b0d6
commit
707c2b0293
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ class MongoUrlInput(QtWidgets.QLineEdit):
|
|||
class InstallDialog(QtWidgets.QDialog):
|
||||
"""Main Igniter dialog window."""
|
||||
|
||||
mongo_url_regex = re.compile(r"(mongodb|mongodb+srv)://.+")
|
||||
mongo_url_regex = re.compile(r"(mongodb|mongodb\+srv)://.+")
|
||||
|
||||
_width = 300
|
||||
_height = 200
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue