convert: Using --dest-type svn crashed, if the source repo used tags.
The convert extension requires puttags(self, tags) to return a sequence
for a multi-variable assignment. If puttags implicitly returns None,
the code will break when trying to un-pack None for assignment.
--- a/hgext/convert/subversion.py Wed Aug 11 12:21:27 2010 +0200
+++ b/hgext/convert/subversion.py Wed Aug 11 11:46:06 2010 +0200
@@ -1158,3 +1158,4 @@
def puttags(self, tags):
self.ui.warn(_('XXX TAGS NOT IMPLEMENTED YET\n'))
+ return None, None