disqus / python-phabricator

Python bindings for Phabricator
Apache License 2.0
159 stars 66 forks source link

Arcrc from anywhere #66

Open nmpowell opened 3 years ago

nmpowell commented 3 years ago

Currently paths to arcconfig and .arcrc are hardcoded in ARC_CONFIGS.

This change allows the user to specify a nonstandard location for a config file like so:

phab = Phabricator(config_path="/path/to/nonstanard/.arcrc")

You can still access the global ARCRC variable if necessary.

Closes #65