Submitter | Sean Farley |
---|---|
Date | May 19, 2014, 8:32 p.m. |
Message ID | <64ca202b3adb047775a7.1400531529@laptop.local> |
Download | mbox | patch |
Permalink | /patch/4804/ |
State | Accepted |
Commit | 02a8612ddec2b91b3c31897a3d99e5abe7f8ef80 |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -997,10 +997,13 @@ class committablectx(basectx): @propertycache def _date(self): return util.makedate() + def subrev(self, subpath): + return None + def user(self): return self._user or self._repo.ui.username() def date(self): return self._date def description(self):