From: Karl Hasselström Date: Fri, 24 Aug 2007 11:20:17 +0000 (+0200) Subject: Don't write None to the conf file X-Git-Tag: v0.14~117 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/168815174b75e6037e8eb98cf7b34a91f789e7a4 Don't write None to the conf file If we don't have a value for the remote, just don't write it. Writing None will either write the string "None" or crash StGIT, depending on how exactly the call is done -- and neither is what we want! Signed-off-by: Karl Hasselström --- diff --git a/stgit/stack.py b/stgit/stack.py index 030562d..0ce9992 100644 --- a/stgit/stack.py +++ b/stgit/stack.py @@ -546,7 +546,8 @@ class Series(PatchSet): def set_parent(self, remote, localbranch): if localbranch: - self.__set_parent_remote(remote) + if remote: + self.__set_parent_remote(remote) self.__set_parent_branch(localbranch) # We'll enforce this later # else: