--- a/Plugins/VcsPlugins/vcsPySvn/Config.py Sun Jun 03 12:51:15 2012 +0200 +++ b/Plugins/VcsPlugins/vcsPySvn/Config.py Sun Jun 10 16:45:10 2012 +0200 @@ -7,9 +7,6 @@ Module defining configuration variables for the subversion package """ -import os - - # Available protocols for the repository URL ConfigSvnProtocols = [ 'file://', @@ -20,7 +17,7 @@ ] -DefaultConfig = os.linesep.join([ +DefaultConfig = "\n".join([ "### This file configures various client-side behaviors.", "###", "### The commented-out examples below are intended to demonstrate",