##// END OF EJS Templates
posix: replace superfluous pass statement with explicit return
Augie Fackler -
r34382:ab687e06 default
parent child Browse files
Show More
@@ -300,7 +300,7 b' def checklink(path):'
300 def checkosfilename(path):
300 def checkosfilename(path):
301 '''Check that the base-relative path is a valid filename on this platform.
301 '''Check that the base-relative path is a valid filename on this platform.
302 Returns None if the path is ok, or a UI string describing the problem.'''
302 Returns None if the path is ok, or a UI string describing the problem.'''
303 pass # on posix platforms, every path is ok
303 return None # on posix platforms, every path is ok
304
304
305 def setbinary(fd):
305 def setbinary(fd):
306 pass
306 pass
General Comments 0
You need to be logged in to leave comments. Login now