##// END OF EJS Templates
ui: drop the deprecated `getpath()`...
Matt Harbison -
r50738:b7f33ed1 default
parent child Browse files
Show More
@@ -1103,15 +1103,6 b' class ui:'
1103 def paths(self):
1103 def paths(self):
1104 return urlutil.paths(self)
1104 return urlutil.paths(self)
1105
1105
1106 def getpath(self, *args, **kwargs):
1107 """see paths.getpath for details
1108
1109 This method exist as `getpath` need a ui for potential warning message.
1110 """
1111 msg = b'ui.getpath is deprecated, use `get_*` functions from urlutil'
1112 self.deprecwarn(msg, b'6.0')
1113 return self.paths.getpath(self, *args, **kwargs)
1114
1115 @property
1106 @property
1116 def fout(self):
1107 def fout(self):
1117 return self._fout
1108 return self._fout
General Comments 0
You need to be logged in to leave comments. Login now