Convert Meta classes to new-style classes

This commit is contained in:
Sarina Canelake
2015-07-10 11:31:45 -04:00
parent b41e70f541
commit 22bbdacee9
19 changed files with 39 additions and 39 deletions

View File

@@ -46,7 +46,7 @@ class TrackingLog(models.Model):
time = models.DateTimeField('event time')
host = models.CharField(max_length=64, blank=True)
class Meta:
class Meta(object): # pylint: disable=missing-docstring
app_label = 'track'
db_table = 'track_trackinglog'