We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
現状, upload_script を絶対パスで指定しないと動きませんが, base_dir からの相対パスで指定できると嬉しいです.
相対パスを指定して rime upload を dry-run すると,以下のコードの 216 行目で AttributeError: 'NoneType' object has no attribute 'startswith' が生じます.
rime upload
AttributeError: 'NoneType' object has no attribute 'startswith'
rime/rime/plugins/judge_system/atcoder.py
Lines 210 to 218 in 3e1690a
211 行目の if 文はスクリプトのパスが base_dir と join されるので通りますが,次の 215 行目では join されていないので,スクリプトが読み込めていないのだと考えます.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
現状, upload_script を絶対パスで指定しないと動きませんが, base_dir からの相対パスで指定できると嬉しいです.
相対パスを指定して
rime upload
を dry-run すると,以下のコードの 216 行目でAttributeError: 'NoneType' object has no attribute 'startswith'
が生じます.rime/rime/plugins/judge_system/atcoder.py
Lines 210 to 218 in 3e1690a
211 行目の if 文はスクリプトのパスが base_dir と join されるので通りますが,次の 215 行目では join されていないので,スクリプトが読み込めていないのだと考えます.
The text was updated successfully, but these errors were encountered: