eric6/Plugins/VcsPlugins/vcsMercurial/Config.py

branch
maintenance
changeset 6989
8b8cadf8d7e9
parent 6942
2602857055c5
child 7229
53054eb5b15a
equal deleted inserted replaced
6938:7926553b7509 6989:8b8cadf8d7e9
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2010 - 2019 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module defining configuration variables for the Mercurial package.
8 """
9
10 from __future__ import unicode_literals
11
12 # Available protocols fpr the repository URL
13 ConfigHgSchemes = (
14 'file',
15 'http',
16 'https',
17 'ssh',
18 )

eric ide

mercurial