Skip to content

Commit f564c6a

Browse files
committed
Fixed conflict markers in files that didn't get marked as conflicted for some reason...
1 parent 37564b3 commit f564c6a

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

core/admin.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
<<<<<<< HEAD
21
"""Django admin interface for core models.
32
"""
43

5-
=======
6-
>>>>>>> FETCH_HEAD
74
from django.contrib import admin
85

96
from core.models import UserProfile

core/models.py

-4
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@
44
class UserProfile (models.Model):
55
"""Additional information about a User.
66
"""
7-
<<<<<<< HEAD
8-
user = models.ForeignKey(User, unique=True)
9-
=======
107
user = models.ForeignKey(User, unique=True, related_name='profile')
11-
>>>>>>> FETCH_HEAD
128
whitelisted = models.BooleanField()
139
homepage = models.CharField(max_length=100)
1410

0 commit comments

Comments
 (0)