Merge lp:~wasabi34/svn2bzr/bug496914 into lp:svn2bzr

Proposed by Robbert Klarenbeek
Status: Needs review
Proposed branch: lp:~wasabi34/svn2bzr/bug496914
Merge into: lp:svn2bzr
Diff against target: 12 lines (+2/-0)
1 file modified
branchcreator.py (+2/-0)
To merge this branch: bzr merge lp:~wasabi34/svn2bzr/bug496914
Reviewer Review Type Date Requested Status
svn2bzr Pending
Review via email: mp+16185@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Robbert Klarenbeek (wasabi34) wrote :

Fixes bug #496914, tested with SVN dump file included in the bug report.

Unmerged revisions

26. By Robbert Klarenbeek <email address hidden>

Added None-check in is_good

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'branchcreator.py'
2--- branchcreator.py 2009-06-08 03:55:09 +0000
3+++ branchcreator.py 2009-12-15 11:15:28 +0000
4@@ -236,6 +236,8 @@
5
6 :param path: Path to check for
7 """
8+ if path == None:
9+ return False
10 for include, pattern in self._filter:
11 if pattern.match(path):
12 return include

Subscribers

People subscribed via source and target branches