From ef15d659bcec7754bc59623d857e620bc9a23288 Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Sun, 30 Aug 2015 16:11:22 +0300 Subject: [PATCH] version bump to 0.27 --- motioneye/__init__.py | 2 +- motioneye/meyectl.py | 4 ++-- setup.py | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/motioneye/__init__.py b/motioneye/__init__.py index 587c2482b..b5f08c598 100644 --- a/motioneye/__init__.py +++ b/motioneye/__init__.py @@ -1,2 +1,2 @@ -VERSION = "0.25.2-10-g030bf9c" +VERSION = "0.27" diff --git a/motioneye/meyectl.py b/motioneye/meyectl.py index 823b13f23..446a7ab27 100755 --- a/motioneye/meyectl.py +++ b/motioneye/meyectl.py @@ -117,10 +117,10 @@ def parse_conf_line(line): def configure_logging(cmd, log_to_file=False): if log_to_file or cmd != 'motioneye': - format = '%(asctime)s: [{cmd}] %(levelname)7s: %(message)s'.format(cmd=cmd) + format = '%(asctime)s: [{cmd}] %(levelname)8s: %(message)s'.format(cmd=cmd) else: - format = '%(levelname)7s: %(message)s'.format(cmd=cmd) + format = '%(levelname)8s: %(message)s'.format(cmd=cmd) for h in logging.getLogger().handlers: logging.getLogger().removeHandler(h) diff --git a/setup.py b/setup.py index 165b615e2..e5a0d89c8 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ def run(self): license='GPLv3', classifiers=[ - 'Development Status :: 3 - Beta', + 'Development Status :: 4 - Beta', 'Intended Audience :: End Users/Desktop', 'Topic :: Multimedia :: Video', @@ -61,7 +61,6 @@ def run(self): 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7' ],