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
Mitch Garnaat
2015-11-06 23:10:17 -0500
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
02613db194d6742c3a0ec4c4ae02a3fdcb67c9db
02613db1
1 parent
0718d025
Fixing a LOG call
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
kappa/function.py
kappa/function.py
View file @
02613db
...
...
@@ -181,7 +181,7 @@ class Function(object):
config_path
=
os
.
path
.
join
(
self
.
path
,
config_name
)
if
os
.
path
.
exists
(
config_path
):
dest_path
=
os
.
path
.
join
(
self
.
path
,
'config.json'
)
LOG
.
info
(
'copy
{} to {}'
.
format
(
config_path
,
dest_path
)
)
LOG
.
info
(
'copy
%
s to
%
s'
,
config_path
,
dest_path
)
shutil
.
copyfile
(
config_path
,
dest_path
)
def
create
(
self
):
...
...
Please
register
or
login
to post a comment