Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cfbot_commitfest_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def get_submissions_for_commitfest(commitfest_id):
authors = ""
td_count = 0
body = cfbot_util.slow_fetch(url, True)
if body == None:
if body is None:
return []
for line in body.splitlines():
# maybe it's easier to count rows and columns
Expand Down
2 changes: 1 addition & 1 deletion cfbot_patchburner_ctl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ CFBOT_USER=cfbot
CFBOT_UID=1002

usage() {
echo "Usage: $1 init|create|apply|destroy"
echo "Usage: $1 init-template|create|apply|destroy"
echo
echo "init-template -- create a new jail 'patchbase'"
echo
Expand Down
2 changes: 1 addition & 1 deletion cfbot_patchburner_docker_ctl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ TEMPLATE_DIR=patchburner_template
MOUNTED_DIR=patchburner_docker

usage() {
echo "Usage: $1 init|create|apply|destroy"
echo "Usage: $1 init-template|create|apply|destroy"
echo
echo "init-template -- create 'patchburner_template'"
echo
Expand Down
2 changes: 1 addition & 1 deletion cfbot_patchburner_podman_ctl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ TEMPLATE_DIR=patchburner_template
MOUNTED_DIR=patchburner_podman

usage() {
echo "Usage: $1 init|create|apply|destroy"
echo "Usage: $1 init-template|create|apply|destroy"
echo
echo "init-template -- create 'patchburner_template'"
echo
Expand Down