summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Reports/reports
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-09-21 13:55:05 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-09-25 11:58:47 -0400
commitdd28e90f183972cc2a395094ce3e3f72e861953f (patch)
treedfe10fd66e0535763d953333ed49f6467762fbd6 /src/lib/Bcfg2/Server/Reports/reports
parenteec8f653c0235bde8d3a754802a4485f0d542ea3 (diff)
downloadbcfg2-dd28e90f183972cc2a395094ce3e3f72e861953f.tar.gz
bcfg2-dd28e90f183972cc2a395094ce3e3f72e861953f.tar.bz2
bcfg2-dd28e90f183972cc2a395094ce3e3f72e861953f.zip
run pylint for errors on almost everything, full runs on some selected stuff
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."