# HG changeset patch # User Andre Heinecke # Date 1270721811 0 # Node ID cbf372f07daa25802f4524f49f95bd7a36564a3b # Parent e0e99b71932bbd245e3c98be96941b9eef4c35f0 Fixed revision detection by changing Subversion revision numbers to be handled as strings, too. This is required to work with the changes made for Git support. diff -r e0e99b71932b -r cbf372f07daa treepkg/subversion.py --- a/treepkg/subversion.py Wed Mar 17 15:34:43 2010 +0000 +++ b/treepkg/subversion.py Thu Apr 08 10:16:51 2010 +0000 @@ -78,7 +78,7 @@ if str_rev is None: raise SubversionError("Cannot determine last changed revision for %r" % svn_working_copy) - return int(str_rev) + return str_rev def svn_url(url_or_working_copy): """Returns the URL used for the working copy in svn_working_copy"""