From ad6befbe088a0ae6ecd3da7213d53a7fb19b28db Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Sat, 26 Aug 2017 13:17:07 -0400 Subject: [PATCH] Fixes PushChangelog() crashing --- TGServiceInterface/Repository.cs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/TGServiceInterface/Repository.cs b/TGServiceInterface/Repository.cs index ac69f3bd85..2e37dfc627 100644 --- a/TGServiceInterface/Repository.cs +++ b/TGServiceInterface/Repository.cs @@ -187,11 +187,12 @@ namespace TGServiceInterface [OperationContract] string GenerateChangelog(out string error); - /// - /// Pushes the changelog to the currently git, this operation will only run if the changelog is the only difference to be pushed (i.e. no PRs merged) - /// - /// null on success, error on failure - string PushChangelog(); + /// + /// Pushes the changelog to the currently git, this operation will only run if the changelog is the only difference to be pushed (i.e. no PRs merged) + /// + /// null on success, error on failure + [OperationContract] + string PushChangelog(); /// /// Sets the path to the python 2.7 installation