From 665284cd868b225f8d8876475898e36b3a722051 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 19 Dec 2018 12:02:25 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GitRepo.vala b/GitRepo.vala index 01fa84db..36dca8a3 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -202,10 +202,10 @@ public class GitRepo : Object public string get_config(string key) { - return this.git({ "config" , "gitlive." + key); + return this.git({ "config" , "gitlive." + key }); } public string set_config(string key, string value) { - return this.git({ "config" , "gitlive." + key, value); + return this.git({ "config" , "gitlive." + key, value }); } public bool is_managed() -- 2.39.2