summaryrefslogtreecommitdiffstats
path: root/Lib/dospath.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/dospath.py')
-rw-r--r--Lib/dospath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dospath.py b/Lib/dospath.py
index ed35d59..958f9f6 100644
--- a/Lib/dospath.py
+++ b/Lib/dospath.py
@@ -241,7 +241,7 @@ def expandvars(path):
if '$' not in path:
return path
import string
- varchars = string.letters + string.digits + '_-'
+ varchars = string.ascii_letters + string.digits + "_-"
res = ''
index = 0
pathlen = len(path)