Sun, 13 Jul 2014 18:40:52 +0200
Changed some code to get rid of obsolete functions.
# -*- 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://', ]