fix newlines
This commit is contained in:
parent
d1106d6d57
commit
292817433e
1 changed files with 2 additions and 2 deletions
|
@ -203,10 +203,10 @@ def main(args):
|
||||||
inplace=True) as fh:
|
inplace=True) as fh:
|
||||||
for line in fh:
|
for line in fh:
|
||||||
if line.startswith('XDG_ARCHIVE_DIR'):
|
if line.startswith('XDG_ARCHIVE_DIR'):
|
||||||
print("XDG_ARCHIVE_DIR=\"${HOME}/"+args.archive+'"\n')
|
print("XDG_ARCHIVE_DIR=\"${HOME}/"+args.archive+'"', end='\n')
|
||||||
foundarchive=True
|
foundarchive=True
|
||||||
elif line.startswith('XDG_WORK_DIR'):
|
elif line.startswith('XDG_WORK_DIR'):
|
||||||
print("XDG_WORK_DIR=\"${HOME}/"+args.mountpoint+'"\n')
|
print("XDG_WORK_DIR=\"${HOME}/"+args.mountpoint+'"', end='\n')
|
||||||
foundwork=True
|
foundwork=True
|
||||||
else:
|
else:
|
||||||
print(line, end='')
|
print(line, end='')
|
||||||
|
|
Loading…
Reference in a new issue