equal
deleted
inserted
replaced
503 It does not affect --config parameter. |
503 It does not affect --config parameter. |
504 """ |
504 """ |
505 path = self._readstr() |
505 path = self._readstr() |
506 if not path: |
506 if not path: |
507 return |
507 return |
508 self.ui.log(b'chgserver', b'chdir to %r\n', path) |
508 self.ui.log(b'chgserver', b"chdir to '%s'\n", path) |
509 os.chdir(path) |
509 os.chdir(path) |
510 |
510 |
511 def setumask(self): |
511 def setumask(self): |
512 """Change umask (DEPRECATED)""" |
512 """Change umask (DEPRECATED)""" |
513 # BUG: this does not follow the message frame structure, but kept for |
513 # BUG: this does not follow the message frame structure, but kept for |