From b7b91f5d4e941a2bd527a92154b750e2909866ab Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 25 Sep 2017 11:23:31 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GitRepo.vala b/GitRepo.vala index e39e8e27..1d037fcc 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -275,9 +275,10 @@ public class GitRepo : Object } public delegate void GitAsyncCallback (string str) - async public string pull_async(GitAsyncCallback cb) { + public string pull_async(GitAsyncCallback cb) + { - string[] cmd = { "pull" , "--no-edit" }; + string[] cmd = { "pull" , "--no-edit" }; return this.git( cmd , cb); } -- 2.39.2