Submitter | Chinmay Joshi |
---|---|
Date | June 21, 2014, 10:27 a.m. |
Message ID | <9d359cb139d158b7af07.1403346468@genesis> |
Download | mbox | patch |
Permalink | /patch/5026/ |
State | Accepted |
Commit | dfacdd6a111e9b3960bfa8364818645951fa3e07 |
Headers | show |
Comments
Patch
diff --git a/mercurial/scmutil.py b/mercurial/scmutil.py --- a/mercurial/scmutil.py +++ b/mercurial/scmutil.py @@ -184,6 +184,9 @@ def lstat(self, path=None): return os.lstat(self.join(path)) + def listdir(self, path=None): + return os.listdir(self.join(path)) + def makedir(self, path=None, notindexed=True): return util.makedir(self.join(path), notindexed)