Show More
@@ -1353,7 +1353,11 b' class committablectx(basectx):' | |||||
1353 |
|
1353 | |||
1354 | @propertycache |
|
1354 | @propertycache | |
1355 | def _date(self): |
|
1355 | def _date(self): | |
1356 | return util.makedate() |
|
1356 | ui = self._repo.ui | |
|
1357 | date = ui.configdate('devel', 'default-date') | |||
|
1358 | if date is None: | |||
|
1359 | date = util.makedate() | |||
|
1360 | return date | |||
1357 |
|
1361 | |||
1358 | def subrev(self, subpath): |
|
1362 | def subrev(self, subpath): | |
1359 | return None |
|
1363 | return None |
General Comments 0
You need to be logged in to leave comments.
Login now