Mercurial > evolve
comparison hgext3rd/topic/__init__.py @ 2709:5d54de9cf50f
merge back with stable
(version updated in the process)
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Sun, 02 Jul 2017 19:43:44 +0200 |
parents | 1907f5af88a8 |
children | 8c938e9af113 |
comparison
equal
deleted
inserted
replaced
2697:189fd9d6a405 | 2709:5d54de9cf50f |
---|---|
111 # (first pick I could think off, update as needed | 111 # (first pick I could think off, update as needed |
112 'log.topic': 'green_background', | 112 'log.topic': 'green_background', |
113 'topic.active': 'green', | 113 'topic.active': 'green', |
114 } | 114 } |
115 | 115 |
116 testedwith = '4.0.2 4.1.3 4.2' | 116 version = '0.2.0.dev' |
117 testedwith = '4.0.2 4.1.3 4.2.1' | |
118 minimumhgversion = '4.0' | |
119 buglink = 'https://bz.mercurial-scm.org/' | |
117 | 120 |
118 def _contexttopic(self, force=False): | 121 def _contexttopic(self, force=False): |
119 if not (force or self.mutable()): | 122 if not (force or self.mutable()): |
120 return '' | 123 return '' |
121 return self.extra().get(constants.extrakey, '') | 124 return self.extra().get(constants.extrakey, '') |