horizon/openstack_dashboard/dashboards/project/containers
manchandavishal 1457628e0e Fix Python3.11 unit test failures
In Python 3.11, regex have undergone changes in
how they handle Unicode characters. In Python3.11,
global flags must be placed right at the start of a
regular expression. The following regex:

        validators.RegexValidator(r'^(?u)[^/]+$')
must become:
        validators.RegexValidator(r'(?u)^[^/]+$')

Closes-Bug: #2036378
Change-Id: I3884ae5b3a32e33077cf3efeac649ac0c615fdda
2023-09-20 21:15:13 +05:30
..
templates/containers Removing deprecated Swift UI code 2016-11-17 16:00:00 -07:00
__init__.py Splits OpenStack Dashboard bits from framework app code. 2012-10-11 11:47:50 -07:00
panel.py Address RemovedInDjango40Warning (2) 2022-02-04 16:22:07 +09:00
urls.py Address RemovedInDjango40Warning (3) 2022-02-04 16:26:54 +09:00
utils.py Fix Python3.11 unit test failures 2023-09-20 21:15:13 +05:30
views.py Removing deprecated Swift UI code 2016-11-17 16:00:00 -07:00