Skip to content
This repository has been archived by the owner on Jan 31, 2018. It is now read-only.

Commit

Permalink
[bug 1015788] Cosmetic: flake8 fixes (heartbeat)
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Aug 12, 2014
1 parent 05e0a33 commit 3d9bc26
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion fjord/heartbeat/admin.py
Expand Up @@ -35,4 +35,3 @@ class PollAdmin(admin.ModelAdmin):


admin.site.register(Poll, PollAdmin)

2 changes: 1 addition & 1 deletion fjord/heartbeat/models.py
Expand Up @@ -6,7 +6,7 @@
class Poll(ModelBase):
"""Defines a Heartbeat poll"""
slug = models.SlugField(unique=True)
description= models.TextField(default=u'', blank=True)
description = models.TextField(default=u'', blank=True)
status = models.CharField(max_length=1000, blank=True, default=u'')
enabled = models.BooleanField(default=False)

Expand Down

0 comments on commit 3d9bc26

Please sign in to comment.