Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tsurata, Aki
CTDAS
Commits
2b2fa153
Commit
2b2fa153
authored
Jun 07, 2011
by
Peters, Wouter
Browse files
rcfile name will be stripped of leading path before being used in rest of code
parent
a86a4278
Changes
1
Hide whitespace changes
Inline
Side-by-side
da/tools/initexit.py
View file @
2b2fa153
...
...
@@ -313,7 +313,11 @@ class CycleControl(dict):
# expand jobrcfilename to include exec dir from now on.
self
[
'jobrcfilename'
]
=
os
.
path
.
join
(
self
[
'dir.exec'
],
self
[
'jobrcfilename'
])
# First strip current leading path from filename
strippedname
=
os
.
path
.
split
(
self
[
'jobrcfilename'
])[
-
1
]
self
[
'jobrcfilename'
]
=
os
.
path
.
join
(
self
[
'dir.exec'
],
strippedname
)
self
.
ParseTimes
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment