Bug#622103: [PATCH] git-buildpackage: repo.get_submodules fails on filenames with whitespaces

2011-04-10 Thread Bernd Zeimetz
Package: git-buildpackage Version: 0.5.21 Severity: important Tags: patch Hi, in gbp/git.py, line 539: mode, objtype, commit, name = line.split() fails if the filename contains a whitespace. The proper split would be mode, objtype, commit, name = line.split(None, 3) A

Bug#622103: [PATCH] git-buildpackage: repo.get_submodules fails on filenames with whitespaces

2011-04-10 Thread Guido Günther
severity 622103 Hi Bernd, On Sun, Apr 10, 2011 at 11:35:31AM +0200, Bernd Zeimetz wrote: Package: git-buildpackage Version: 0.5.21 Severity: important Tags: patch Hi, in gbp/git.py, line 539: mode, objtype, commit, name = line.split() fails if the filename contains a

Bug#622103: [PATCH] git-buildpackage: repo.get_submodules fails on filenames with whitespaces

2011-04-10 Thread Bernd Zeimetz
Hi, a patch is attache,d but not tested as the nosetest stuff failed ocmpldetely - didn't have the time to figure out why. But I think the patch is correct. Cheers, Bernd On 04/10/2011 04:31 PM, Guido Günther wrote: severity 622103 Hi Bernd, On Sun, Apr 10, 2011 at 11:35:31AM +0200,

Bug#622103: [PATCH] git-buildpackage: repo.get_submodules fails on filenames with whitespaces

2011-04-10 Thread Guido Günther
On Sun, Apr 10, 2011 at 07:00:07PM +0200, Bernd Zeimetz wrote: Hi, a patch is attache,d but not tested as the nosetest stuff failed ocmpldetely - didn't have the time to figure out why. But I think the patch is correct. I was looking for a proper test case but I think I figured it out. The

Bug#622103: [PATCH] git-buildpackage: repo.get_submodules fails on filenames with whitespaces

2011-04-10 Thread Bernd Zeimetz
On 04/10/2011 09:22 PM, Guido Günther wrote: On Sun, Apr 10, 2011 at 07:00:07PM +0200, Bernd Zeimetz wrote: Hi, a patch is attache,d but not tested as the nosetest stuff failed ocmpldetely - didn't have the time to figure out why. But I think the patch is correct. I was looking for a