Skip to content

Commit 8631c7c

Browse files
committed
Minor styling fix
1 parent 83eb89c commit 8631c7c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

push_notifications/models.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ class Meta:
1919
abstract = True
2020

2121
def __unicode__(self):
22-
return self.name or str(self.device_id or "") or "%s for %s" % (self.__class__.__name__, self.user or "unknown user")
22+
return self.name or \
23+
str(self.device_id or "") or \
24+
"%s for %s" % (self.__class__.__name__, self.user or "unknown user")
2325

2426

2527
class GCMDeviceManager(models.Manager):

0 commit comments

Comments
 (0)