Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6d6928 commit 11bb174Copy full SHA for 11bb174
1 file changed
Demo/pdist/rcsclient.py
@@ -7,6 +7,7 @@
7
"""
8
9
import string
10
+import os
11
12
# These defaults don't belong here -- they should be taken from the
13
# environment or from a hidden file in the current directory
@@ -59,7 +60,7 @@ def openrcsclient(opts = []):
59
60
x = RCSProxyClient(address, verbose)
61
if not directory:
62
try:
- directory = open("CVS/Repository").readline()
63
+ directory = open(os.path.join("CVS", "Repository")).readline()
64
except IOError:
65
pass
66
else:
0 commit comments