From 3e7f9b35a22d2bdc70d8df741fe208a29bf2d93b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stefan=20K=C3=B6gl?= Date: Sun, 26 May 2013 12:09:20 +0200 Subject: [PATCH] remove unused syslog-support this has already been replaced by standard Python logging --- mygpo/log.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 mygpo/log.py diff --git a/mygpo/log.py b/mygpo/log.py deleted file mode 100644 index befa43cf..00000000 --- a/mygpo/log.py +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is part of my.gpodder.org. -# -# my.gpodder.org is free software: you can redistribute it and/or modify it -# under the terms of the GNU Affero General Public License as published by -# the Free Software Foundation, either version 3 of the License, or (at your -# option) any later version. -# -# my.gpodder.org is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public -# License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with my.gpodder.org. If not, see . -# - -# my.gpodder.org logging module - -import syslog - -syslog.openlog('my.gpodder.org') - -def log(message): - syslog.syslog(message) -- 2.11.4.GIT