mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-16 00:28:25 +01:00
Fixed a syntax error in the config module.
This commit is contained in:
parent
ac5e38c8f0
commit
ce98a2ed70
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ def init(run):
|
|||
missing.set_checkout_missing(__read_git_config__("checkout-missing", False))
|
||||
extensions.define(__read_git_config__("file-types", ",".join(extensions.get())))
|
||||
|
||||
exclude = __read_git_config__("exclude", None):
|
||||
exclude = __read_git_config__("exclude", None)
|
||||
if exclude != None:
|
||||
filtering.add(exclude)
|
||||
|
||||
|
|
Loading…
Reference in a new issue