I believe these settings should be enough to reproduce the error.
platform: linux
bits: 64
haxe version: latest dev version
hxcpp: https://github.com/larsiusprime/hxcpp (master branch)
I believe these settings should be enough to reproduce the error.
platform: linux
bits: 64
haxe version: latest dev version
hxcpp: https://github.com/larsiusprime/hxcpp (master branch)
# prompt examples: | |
# [3 jobs master] ~/code/myproject/foo | |
# [1 job my-branch] ~/code/bar/ | |
# ~ | |
# Very, very fast, only requiring a couple of fork()s (and no forking at all to determine the current git branch) | |
if [[ "$USER" == "root" ]] | |
then | |
export PS1="\e[1;31m\]\u \[\e[1;33m\]\w\[\e[0m\] "; | |
else |
$ python3 gh-issues-import/gh-issues-import.py | |
Traceback (most recent call last): | |
File "gh-issues-import/gh-issues-import.py", line 129, in <module> | |
main() | |
File "gh-issues-import/gh-issues-import.py", line 125, in main | |
import_issues(issues, milestones, labels) | |
File "gh-issues-import/gh-issues-import.py", line 103, in import_issues | |
res_issue = send_post_request("%s/issues" % dst_url, issue) | |
File "gh-issues-import/gh-issues-import.py", line 22, in send_post_request | |
response = urllib.request.urlopen(req) |
import urllib.request, urllib.error, urllib.parse | |
import json | |
import base64 | |
#==== configurations ======= | |
username = "username" | |
password = "password" | |
src_repo = "AdamAtomic/flixel" | |
dst_repo = "FlixelCommunity/flixel" | |
#==== end of configurations === |