← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] lp:~jtv/maas/prep-macaddress into lp:maas

 

Jeroen T. Vermeulen has proposed merging lp:~jtv/maas/prep-macaddress into lp:maas.

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~jtv/maas/prep-macaddress/+merge/108113

As per the migration plan.  There's no manager class, no helpers to be extracted, so that's all easy.  I suppose we'll have some circular references to resolve between Node and MACAddress, but we'll get to that in the actual migration branch.


Jeroen
-- 
https://code.launchpad.net/~jtv/maas/prep-macaddress/+merge/108113
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~jtv/maas/prep-macaddress into lp:maas.
=== modified file 'src/maasserver/models/__init__.py'
--- src/maasserver/models/__init__.py	2012-05-30 12:24:57 +0000
+++ src/maasserver/models/__init__.py	2012-05-31 07:57:19 +0000
@@ -630,6 +630,7 @@
 mac_re = re.compile(r'^([0-9a-fA-F]{2}:){5}[0-9a-fA-F]{2}$')
 
 
+# Scheduled for model migration on 2012-06-07
 class MACAddress(CleanSave, TimestampedModel):
     """A `MACAddress` represents a `MAC address
     <http://en.wikipedia.org/wiki/MAC_address>`_ attached to a :class:`Node`.