Thu, 10 Jan 2019 14:18:48 +0100
Updated copyright for 2019.
# -*- coding: utf-8 -*- # Copyright (c) 2010 - 2019 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 ConfigHgSchemes = ( 'file', 'http', 'https', 'ssh', )