Skip to content

Commit

Permalink
fix word PROJECT_ID -> REPOSITORY_NAME
Browse files Browse the repository at this point in the history
  • Loading branch information
kanon-k4 committed Sep 15, 2020
1 parent 6f7c49c commit 3a4f834
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup/setup/setup_create_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def create_issue(filepath: str, info: ArticleInfo, organization_name: str, proje
print(msg.WORNING_ISSUE_DUPLICATED(title))
return

result_title: str = post_issue(organization_name,project_id, private_token, title, description, assignee_id)
result_title: str = post_issue(organization_name, project_id, private_token, title, description, assignee_id)
print(msg.CREATED_ISSUE_MSG(result_title))

# 既に作られたissueを取得します
Expand Down
2 changes: 1 addition & 1 deletion setup/setup/setup_msg.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def WORNING_ISSUE_DUPLICATED(title: str) -> str:

GITHUB_INFO_INPUT_GUIDE: str = 'Please type these infomations in order to create issues on GitHub:'
ORGANIZATION_NAME_INPUT_GUIDE: str = 'Organization Name (Default : ritscc) : '
REPOSITORY_ID_INPUT_GUIDE: str = 'Repository Name : '
REPOSITORY_NAME_INPUT_GUIDE: str = 'Repository Name : '
PRIVATE_TOKEN_INPUT_GUIDE: str = 'TOKEN (string) : '

def MEETING_DAY_INPUT_GUIDE(default_date_str: str) -> str:
Expand Down

0 comments on commit 3a4f834

Please sign in to comment.