Browse Source

Add debug and verbose output. Indent Query URL.

master
poikilos 3 years ago
parent
commit
083b3f46e1
  1. 8
      utilities/enissue.py

8
utilities/enissue.py

@ -303,7 +303,7 @@ class Repo:
elif len(query_part) > 0: elif len(query_part) > 0:
query_s += "?" + query_part query_s += "?" + query_part
try: try:
debug(p+"query_s: {}".format(query_s)) debug(p+"Query URL (query_s): {}".format(query_s))
response = request.urlopen(query_s) response = request.urlopen(query_s)
except urllib.error.HTTPError as e: except urllib.error.HTTPError as e:
print(p+"You may be able to view the issues on GitHub") print(p+"You may be able to view the issues on GitHub")
@ -629,6 +629,7 @@ class Repo:
def main(): def main():
global verbose
mode = None mode = None
repo = Repo() repo = Repo()
prev_arg = None prev_arg = None
@ -668,6 +669,11 @@ def main():
state = 'closed' state = 'closed'
elif arg == "--refresh": elif arg == "--refresh":
options['refresh'] = True options['refresh'] = True
elif arg == "--verbose":
verbose = True
elif arg == "--help":
usage()
exit(0)
elif arg.startswith("--"): elif arg.startswith("--"):
usage() usage()
error("Error: The argument \"{}\" is not valid" error("Error: The argument \"{}\" is not valid"

Loading…
Cancel
Save