Skip to content

Commit

Permalink
Merge branch 'release/2.9.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
1024jp committed Mar 1, 2022
2 parents 0753972 + 4dfffe6 commit 2848a9b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Change Log
==========================

2.9.2
--------------------------

- Invoke `python3` instead of `python` to run `cot` command itself.


2.9.1
--------------------------

Expand Down
11 changes: 2 additions & 9 deletions cot
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#!/usr/bin/env python3
"""
cot
Expand Down Expand Up @@ -38,7 +37,7 @@ from subprocess import Popen, PIPE, CalledProcessError


# meta data
__version__ = '2.9.1'
__version__ = '2.9.2'
__description__ = 'command-line utility for CotEditor.'


Expand All @@ -47,12 +46,6 @@ APPLICATION_NAME = 'CotEditor'
WAIT_INTERVAL = 1.0


# set encoding for file path
if sys.version_info < (3, 0):
reload(sys)
sys.setdefaultencoding('utf8')


# MARK: Style

class Style:
Expand Down

0 comments on commit 2848a9b

Please sign in to comment.