mac robustness: use os.path.join
diff --git a/Demo/pdist/rcsclient.py b/Demo/pdist/rcsclient.py
index 983aad1..20dffec 100755
--- a/Demo/pdist/rcsclient.py
+++ b/Demo/pdist/rcsclient.py
@@ -7,6 +7,7 @@
 """
 
 import string
+import os
 
 # These defaults don't belong here -- they should be taken from the
 # environment or from a hidden file in the current directory
@@ -59,7 +60,7 @@
 		x = RCSProxyClient(address, verbose)
 	if not directory:
 		try:
-			directory = open("CVS/Repository").readline()
+			directory = open(os.path.join("CVS", "Repository")).readline()
 		except IOError:
 			pass
 		else: