mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 06:20:08 +01:00
py27 compat fix
This commit is contained in:
parent
e3bdb4956b
commit
37120111b7
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ class Project:
|
||||||
|
|
||||||
def __enter__(self):
|
def __enter__(self):
|
||||||
self.prev_cwd = os.getcwd()
|
self.prev_cwd = os.getcwd()
|
||||||
os.chdir(self.dir)
|
os.chdir(str(self.dir))
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def __exit__(self, *exc):
|
def __exit__(self, *exc):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue