Fix for Issue #177

This commit is contained in:
Miroslav Stampar
2010-03-16 13:11:44 +00:00
parent 323cf2b7f2
commit 1dfe558d3d
4 changed files with 21 additions and 2 deletions

View File

@@ -939,3 +939,9 @@ def posixToNtSlashes(filepath):
def ntToPosixSlashes(filepath):
return filepath.replace('\\', '/')
def push(value):
conf.stack.append(value)
def pop():
return conf.stack.pop()