Convert Meta classes to new-style classes
This commit is contained in:
@@ -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'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user