Skip to content

Commit

Permalink
[FIX] allow config dir (as per patch)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Arnold committed Dec 4, 2018
1 parent bc15e01 commit d6ba736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion click_odoo/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
config_opt = click.Option(
("--config", "-c"),
envvar=["ODOO_RC", "OPENERP_SERVER"],
type=click.Path(exists=True, dir_okay=False),
type=click.Path(exists=True, dir_okay=True),
help="Specify the Odoo configuration file. Other "
"ways to provide it are with the ODOO_RC or "
"OPENERP_SERVER environment variables, "
Expand Down

0 comments on commit d6ba736

Please sign in to comment.