summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Reports/reports
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Reports/reports')
-rw-r--r--src/lib/Bcfg2/Server/Reports/reports/templatetags/bcfg2_tags.py4
-rw-r--r--src/lib/Bcfg2/Server/Reports/reports/templatetags/syntax_coloring.py2
-rw-r--r--src/lib/Bcfg2/Server/Reports/reports/views.py2
3 files changed, 5 insertions, 3 deletions
diff --git a/src/lib/Bcfg2/Server/Reports/reports/templatetags/bcfg2_tags.py b/src/lib/Bcfg2/Server/Reports/reports/templatetags/bcfg2_tags.py
index 894353bba..736d6448a 100644
--- a/src/lib/Bcfg2/Server/Reports/reports/templatetags/bcfg2_tags.py
+++ b/src/lib/Bcfg2/Server/Reports/reports/templatetags/bcfg2_tags.py
@@ -330,7 +330,7 @@ def do_qs(parser, token):
try:
tag, name, value = token.split_contents()
except ValueError:
- raise TemplateSyntaxError, "%r tag requires exactly two arguments" \
+ raise template.TemplateSyntaxError, "%r tag requires exactly two arguments" \
% token.contents.split()[0]
return QsNode(name, value)
@@ -367,7 +367,7 @@ def sort_link(parser, token):
try:
tag, sort_key, text = token.split_contents()
except ValueError:
- raise TemplateSyntaxError("%r tag requires at least four arguments" \
+ raise template.TemplateSyntaxError("%r tag requires at least four arguments" \
% token.split_contents()[0])
return SortLinkNode(sort_key, text)
diff --git a/src/lib/Bcfg2/Server/Reports/reports/templatetags/syntax_coloring.py b/src/lib/Bcfg2/Server/Reports/reports/templatetags/syntax_coloring.py
index b2814b445..70ef49bc1 100644
--- a/src/lib/Bcfg2/Server/Reports/reports/templatetags/syntax_coloring.py
+++ b/src/lib/Bcfg2/Server/Reports/reports/templatetags/syntax_coloring.py
@@ -8,6 +8,7 @@ from Bcfg2.Compat import u_str
register = template.Library()
+# pylint: disable=E0611,F0401
try:
from pygments import highlight
from pygments.lexers import get_lexer_by_name
@@ -16,6 +17,7 @@ try:
except:
colorize = False
+# pylint: enable=E0611,F0401
@register.filter
diff --git a/src/lib/Bcfg2/Server/Reports/reports/views.py b/src/lib/Bcfg2/Server/Reports/reports/views.py
index e4c38363f..ca9e5f1f9 100644
--- a/src/lib/Bcfg2/Server/Reports/reports/views.py
+++ b/src/lib/Bcfg2/Server/Reports/reports/views.py
@@ -574,7 +574,7 @@ def prepare_paginated_list(request, context, paged_list, page=1, max_results=25)
view, args, kwargs = resolve(request.META['PATH_INFO'])
kwargs['page_number'] = total_pages
raise PaginationError(HttpResponseRedirect(reverse(view,
- kwards=kwargs)))
+ kwargs=kwargs)))
except (Resolver404, NoReverseMatch, ValueError):
raise "Accessing beyond last page. Unable to resolve redirect."