diff options
author | Stephen Finucane <stephen@that.guru> | 2018-09-04 20:15:37 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2018-09-11 11:25:01 -0600 |
commit | fddbed7e81058ab31f0ae341ae6d9300e74465dd (patch) | |
tree | 32c73511b35c17656b96adec0dba887795f00226 | |
parent | 5976cce6e8b9dc7e34abc3070ebd0f53bbbeabb0 (diff) | |
download | patchwork-fddbed7e81058ab31f0ae341ae6d9300e74465dd.tar patchwork-fddbed7e81058ab31f0ae341ae6d9300e74465dd.tar.gz |
templatetags: Remove dead tag
Nothing appears to be using this so it can be removed.
Signed-off-by: Stephen Finucane <stephen@that.guru>
-rw-r--r-- | patchwork/templatetags/patch.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/patchwork/templatetags/patch.py b/patchwork/templatetags/patch.py index 4350e09..30ccc8e 100644 --- a/patchwork/templatetags/patch.py +++ b/patchwork/templatetags/patch.py @@ -57,11 +57,6 @@ def patch_checks(patch): ' '.join([str(counts[state]) for state in required]))) -@register.filter(name='state_class') -def state_class(state): - return '-'.join(state.split()) - - @register.filter @stringfilter def msgid(value): |