summaryrefslogtreecommitdiffstats
path: root/Lib/plat-riscos/riscospath.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/plat-riscos/riscospath.py')
-rw-r--r--Lib/plat-riscos/riscospath.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/plat-riscos/riscospath.py b/Lib/plat-riscos/riscospath.py
index c25572b..fb0e477 100644
--- a/Lib/plat-riscos/riscospath.py
+++ b/Lib/plat-riscos/riscospath.py
@@ -103,8 +103,10 @@ def join(a, *p):
j= a
for b in p:
(fs, drive, path)= _split(b)
- if fs!='' or drive!='' or path[:1] in _roots:
+ if j=='' or fs!='' or drive!='' or path[:1] in _roots:
j= b
+ elif j[-1]==':':
+ j= j+b
else:
j= j+'.'+b
return j