Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Barry
/
discordbot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
94fe7fb5
authored
2015-12-16 14:59:26 +0000
by
Barry
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bug fix for gameslist to handle default of 20.
1 parent
8a0fe261
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
1 deletions
hellsbot.py
members.json
hellsbot.py
View file @
94fe7fb
...
...
@@ -345,7 +345,7 @@ Stuff:
else
:
parts
=
message
.
content
.
split
(
' '
)
limit
=
20
if
parts
[
1
]
.
isdigit
():
if
len
(
parts
)
>
1
and
parts
[
1
]
.
isdigit
():
limit
=
int
(
parts
[
1
])
game_list
=
[]
...
...
members.json
View file @
94fe7fb
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to post a comment