Fixed a syntax error in the config module.

This commit is contained in:
Adam Waldenberg 2013-07-01 00:34:28 +02:00
parent ac5e38c8f0
commit ce98a2ed70
1 changed files with 1 additions and 1 deletions

View File

@ -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)