Toggle navigation
Toggle navigation
This project
Loading...
Sign in
서승완
/
kappa
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
서승완
2020-05-11 04:47:23 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1b0e17bb6da7460d9d494828c682a5ef66736aa3
1b0e17bb
1 parent
297d4bec
fix: encoding bug
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
setup.py
setup.py
View file @
1b0e17b
...
...
@@ -11,7 +11,7 @@ except ImportError:
def
open_file
(
fname
):
return
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
fname
))
return
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
fname
)
,
encoding
=
'utf-8'
)
def
run_setup
():
...
...
Please
register
or
login
to post a comment