You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "[...]/bazel-out/host/bin/external/rules_pkg/make_deb.runfiles/rules_pkg/make_deb.py", line 397, in <module>
main(FLAGS(sys.argv))
File "[...]/bazel-out/host/bin/external/rules_pkg/make_deb.runfiles/rules_pkg/make_deb.py", line 370, in main
description=GetFlagValue(FLAGS.description),
File "[...]/bazel-out/host/bin/external/rules_pkg/make_deb.runfiles/rules_pkg/make_deb.py", line 343, in GetFlagValue
flagvalue = os.fsencode(flagvalue).decode('utf-8')
AttributeError: 'module' object has no attribute 'fsencode'
The text was updated successfully, but these errors were encountered:
It seems that the recent change to fix flag encoding on python3 breaks on python2, since
os.fsencode
doesn't exist.rules_pkg/pkg/make_deb.py
Line 343 in 96e34ab
The text was updated successfully, but these errors were encountered: