Wed, 13 Feb 2019 18:59:31 +0100
Fixed some code style issues detected by the updated style checker (over-indented lines).
# -*- 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', )