Merge pull request #929 from elbaloo/issue-389

Add .com links to PrivateRepositoryQuotaExceededException
This commit is contained in:
Phil Haack
2015-10-07 12:57:50 -07:00
@@ -29,8 +29,9 @@ namespace Octokit
get
{
// TODO: Would be nice to show the actual numbers, but that requires another request.
return "You are currently at your limit of private repositories. Either delete a private repository "
+ "you no longer use or upgrade your account to a plan that allows for more private repositories.";
return "You are currently at your limit of private repositories. Either delete a private repository you no "
+ "longer use (https://help.github.com/articles/deleting-a-repository/) or upgrade your account to a plan "
+ "that allows for more private repositories (https://help.github.com/articles/what-plan-should-i-choose/).";
}
}
@@ -52,4 +53,4 @@ namespace Octokit
}
#endif
}
}
}