mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Even more unicode fixes
This commit is contained in:
parent
3ff1e43e03
commit
14d249c3c9
3 changed files with 3 additions and 2 deletions
|
@ -4,6 +4,7 @@ Changelog
|
||||||
|
|
||||||
### 1.7 (December 22, 2013)
|
### 1.7 (December 22, 2013)
|
||||||
|
|
||||||
|
* __1.7.16__ Even more unicode fixes!
|
||||||
* __1.7.15__ More unicode fixes
|
* __1.7.15__ More unicode fixes
|
||||||
* __1.7.14__ Fix for trailing whitespaces (eg. when writing markdown code block)
|
* __1.7.14__ Fix for trailing whitespaces (eg. when writing markdown code block)
|
||||||
* __1.7.13__ Fix for UTF-8 in DayOne journals
|
* __1.7.13__ Fix for UTF-8 in DayOne journals
|
||||||
|
|
|
@ -8,7 +8,7 @@ jrnl is a simple journal application for your command line.
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
__title__ = 'jrnl'
|
__title__ = 'jrnl'
|
||||||
__version__ = '1.7.15'
|
__version__ = '1.7.16'
|
||||||
__author__ = 'Manuel Ebert'
|
__author__ = 'Manuel Ebert'
|
||||||
__license__ = 'MIT License'
|
__license__ = 'MIT License'
|
||||||
__copyright__ = 'Copyright 2013 - 2014 Manuel Ebert'
|
__copyright__ = 'Copyright 2013 - 2014 Manuel Ebert'
|
||||||
|
|
|
@ -110,7 +110,7 @@ def update_config(config, new_config, scope, force_local=False):
|
||||||
|
|
||||||
def run(manual_args=None):
|
def run(manual_args=None):
|
||||||
args = parse_args(manual_args)
|
args = parse_args(manual_args)
|
||||||
|
args.text = map(lambda p: p.decode('utf-8'), args.text)
|
||||||
if args.version:
|
if args.version:
|
||||||
version_str = "{0} version {1}".format(jrnl.__title__, jrnl.__version__)
|
version_str = "{0} version {1}".format(jrnl.__title__, jrnl.__version__)
|
||||||
print(util.py2encode(version_str))
|
print(util.py2encode(version_str))
|
||||||
|
|
Loading…
Add table
Reference in a new issue