Skip to content

Commit

Permalink
version bump to 0.27
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrisan committed Aug 30, 2015
1 parent a7d5bea commit ef15d65
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion motioneye/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

VERSION = "0.25.2-10-g030bf9c"
VERSION = "0.27"
4 changes: 2 additions & 2 deletions motioneye/meyectl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,14 @@ def run(self):
license='GPLv3',

classifiers=[
'Development Status :: 3 - Beta',
'Development Status :: 4 - Beta',

'Intended Audience :: End Users/Desktop',
'Topic :: Multimedia :: Video',

'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',

'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
],

Expand Down

0 comments on commit ef15d65

Please sign in to comment.