summaryrefslogtreecommitdiff
path: root/portato/log.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2010-04-19 19:47:26 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2010-04-19 19:47:26 +0200
commit6021507f58e9a30cb0324270c8e27aa0a0691a8c (patch)
tree55157b84f2a4a2e85b2da0c7c9161711519f54b9 /portato/log.py
parent43a537bb875381576fd8782884d1079080e1d592 (diff)
parent8ab3b62a6cd6b0d96409cd2cb0c9ef3150ebc1ab (diff)
downloadportato-6021507f58e9a30cb0324270c8e27aa0a0691a8c.tar.gz
portato-6021507f58e9a30cb0324270c8e27aa0a0691a8c.tar.bz2
portato-6021507f58e9a30cb0324270c8e27aa0a0691a8c.zip
Merge branch '0.14'
* 0.14: Remove unused pythonic eix parser implementation Connect the accels from the menu. Replace 'Portage Warning' by 'External Warning' Updated italian translation. Thx to Ponsi Conflicts: portato/eix/py_parser.py
Diffstat (limited to 'portato/log.py')
-rw-r--r--portato/log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/log.py b/portato/log.py
index c945372..1d0c8f5 100644
--- a/portato/log.py
+++ b/portato/log.py
@@ -104,7 +104,7 @@ import warnings
def showwarnings(msg, cat, filename, lineno, file = None, line = None):
msg = warnings.formatwarning(msg, cat, filename, lineno, line)
- record = logging.LogRecord("portatoLogger", logging.WARNING, filename, lineno, "Portage Warning: %s", (msg,), None)
+ record = logging.LogRecord("portatoLogger", logging.WARNING, filename, lineno, "External Warning: %s", (msg,), None)
logging.getLogger("portatoLogger").handle(record)
warnings.showwarning = showwarnings