summaryrefslogtreecommitdiffstats
path: root/ipsilon/util/errors.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2015-04-29 13:57:34 -0400
committerSimo Sorce <simo@redhat.com>2015-05-05 14:32:24 -0400
commit158c4cdefc0bd5b8dabe38685c1bebccc24d656b (patch)
treeec4a177cfb380a7cf1df77ffd5d5e4d783997bba /ipsilon/util/errors.py
parentf54958e7101614a64d2dceb18b46d68a88130506 (diff)
downloadipsilon.git-158c4cdefc0bd5b8dabe38685c1bebccc24d656b.tar.gz
ipsilon.git-158c4cdefc0bd5b8dabe38685c1bebccc24d656b.tar.xz
ipsilon.git-158c4cdefc0bd5b8dabe38685c1bebccc24d656b.zip
Drop usage of self._debug and use self.debug instead
This method was deprecated but still used in a lot of places. https://fedorahosted.org/ipsilon/ticket/120 Signed-off-by: Rob Crittenden <rcritten@redhat.com> Reviewed-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'ipsilon/util/errors.py')
-rw-r--r--ipsilon/util/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipsilon/util/errors.py b/ipsilon/util/errors.py
index 26a6a34..7017a1b 100644
--- a/ipsilon/util/errors.py
+++ b/ipsilon/util/errors.py
@@ -31,7 +31,7 @@ class Errors(Page):
return str(output_page)
def handler(self, status, message, traceback, version):
- self._debug(repr([status, message, traceback, version]))
+ self.debug(repr([status, message, traceback, version]))
return self._error_template('internalerror.html',
title='Internal Error')