summaryrefslogtreecommitdiffstats
path: root/git_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'git_config.py')
-rw-r--r--git_config.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/git_config.py b/git_config.py
index c19f7662..4f053ed0 100644
--- a/git_config.py
+++ b/git_config.py
@@ -70,7 +70,7 @@ def _key(name):
70 return ".".join(parts) 70 return ".".join(parts)
71 71
72 72
73class GitConfig(object): 73class GitConfig:
74 _ForUser = None 74 _ForUser = None
75 75
76 _ForSystem = None 76 _ForSystem = None
@@ -430,7 +430,7 @@ class RepoConfig(GitConfig):
430 return os.path.join(repo_config_dir, ".repoconfig/config") 430 return os.path.join(repo_config_dir, ".repoconfig/config")
431 431
432 432
433class RefSpec(object): 433class RefSpec:
434 """A Git refspec line, split into its components: 434 """A Git refspec line, split into its components:
435 435
436 forced: True if the line starts with '+' 436 forced: True if the line starts with '+'
@@ -541,7 +541,7 @@ def GetUrlCookieFile(url, quiet):
541 yield cookiefile, None 541 yield cookiefile, None
542 542
543 543
544class Remote(object): 544class Remote:
545 """Configuration options related to a remote.""" 545 """Configuration options related to a remote."""
546 546
547 def __init__(self, config, name): 547 def __init__(self, config, name):
@@ -723,7 +723,7 @@ class Remote(object):
723 return self._config.GetString(key, all_keys=all_keys) 723 return self._config.GetString(key, all_keys=all_keys)
724 724
725 725
726class Branch(object): 726class Branch:
727 """Configuration options related to a single branch.""" 727 """Configuration options related to a single branch."""
728 728
729 def __init__(self, config, name): 729 def __init__(self, config, name):