GothenburgBitFactory / bugwarrior

Pull github, bitbucket, and trac issues into taskwarrior
http://pypi.python.org/pypi/bugwarrior
GNU General Public License v3.0
732 stars 209 forks source link

[gitbug] Correctly expand user home directory path #1033

Closed marty-oehme closed 4 months ago

marty-oehme commented 4 months ago

Previously in the git-bug service, providing '~' as part of the path to a gitbug remote would not correctly expand to the user's home directory and error out with directory not found.

This commit fixes the behavior to correctly expand the path instead, aligning it with that of the taskrc configuration option and other services' path expansion.

It simply switches out the pathlib.Path class for config.ExpandedPath, which the gmail, gitlab and gerrit services also make use of.

The PR includes a small test of the gitbug path configuration setup to avoid later regressions. Hope this little PR is formatted well! Let me know if there's any remaining issues to be fixed.