Fix dumpdata ordering for VRFs

This commit is contained in:
jeremystretch 2022-04-07 21:19:38 -04:00
parent 696d62cf63
commit 20e7868854

View File

@ -1,8 +1,9 @@
# Ensure that VRFs are imported before IPs/prefixes so dumpdata & loaddata work correctly
from .fhrp import *
from .vrfs import *
from .ip import *
from .services import *
from .vlans import *
from .vrfs import *
__all__ = (
'ASN',