From: Alan Knowles Date: Mon, 25 Sep 2017 03:23:31 +0000 (+0800) Subject: GitRepo.vala X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=b7b91f5d4e941a2bd527a92154b750e2909866ab GitRepo.vala --- 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); }