Tue, 30 Dec 2014 11:50:13 +0100
Corrected some copy & paste issue in the Mercurial plug-in.
# -*- coding: utf-8 -*- # Copyright (c) 2010 - 2014 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module defining configuration variables for the Mercurial package. """ from __future__ import unicode_literals # Available protocols fpr the repository URL ConfigHgProtocols = [ 'file://', 'http://', 'https://', 'ssh://', ]