# HG changeset patch # User Dan Villiom Podlaski Christiansen # Date 1376068747 -7200 # Node ID 04f15d38a500754d45dcbf84c898df8020c2a188 # Parent 025de18d652b0770e35e79d55b139753be9e9c57 svnwrap: don't require Revision paths to be specified diff --git a/hgsubversion/svnwrap/common.py b/hgsubversion/svnwrap/common.py --- a/hgsubversion/svnwrap/common.py +++ b/hgsubversion/svnwrap/common.py @@ -51,7 +51,7 @@ class Revision(tuple): Derives from tuple in an attempt to minimise the memory footprint. """ - def __new__(self, revnum, author, message, date, paths, strip_path=''): + def __new__(self, revnum, author, message, date, paths=None, strip_path=''): _paths = {} if paths: for p in paths: