Skip to content

Commit 969853e

Browse files
committed
Fix issue with auth_token variable in quotes
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 4d3c441 commit 969853e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lab5.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,6 @@ Tick the box for "repo" to allow access to your repositories
270270

271271
Click the "Generate Token" button at the bottom of the page
272272

273-
274273
Create a file called `env.yml` in the directory where your `issue-bot.yml` file is located with the following content:
275274

276275
```yaml
@@ -316,7 +315,7 @@ issue_number = 1
316315
repo_name = "alexellis/issue_bot"
317316
auth_token = "xyz"
318317
319-
g = Github("auth_token")
318+
g = Github(auth_token)
320319
repo = g.get_repo(repo_name)
321320
issue = repo.get_issue(issue_number)
322321
```

0 commit comments

Comments
 (0)