Fixes bugs when checking if this is a local project.

This commit is contained in:
grossmj 2015-03-09 12:45:02 -06:00
parent 4f1674f50c
commit 5ca65093e4

View File

@ -89,7 +89,7 @@ class Project:
def is_local(self):
return self._config().get("local", False)
return self._config().getboolean("local", False)
@classmethod
def _get_default_project_directory(cls):