Skip to content
Snippets Groups Projects
Commit d5312243 authored by Nick Mathewson's avatar Nick Mathewson :fire:
Browse files

gitlab-checklist: small tweaks

parent 14528734
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ import sys
# The result will be a gitlab checklist.
if sys.stdin.isatty():
print("(reading from stdin...)", file=stderr)
print("(reading from stdin...)", file=sys.stderr)
# Parse the input.
input = sys.stdin.read()
......@@ -27,8 +27,6 @@ issues = input.split()
gl = gitlab.Gitlab('https://gitlab.torproject.org')
MAIN_PROJECT = "tor"
if 0:
all_projects = {}
for p in gl.projects.list(all=True):
......@@ -62,7 +60,5 @@ for iid in issues:
else:
x = " "
name = gl.projects.get(issue.project_id).name.lower()
if name == MAIN_PROJECT:
name = ""
print(" * [{}] {}#{} {} ".format(x, name, iid, issue.title))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment