Skip to content
Snippets Groups Projects
Commit 8c84e37c authored by Joseph Ramsay's avatar Joseph Ramsay
Browse files

Re #20827 Fixed format problems in SaveVulcan and SaveYDA

parent fb0f18b6
No related merge requests found
......@@ -39,7 +39,7 @@ Usage
gfile.close()
print("[GSAS File Start]")
for i in xrange(11):
for i in range(11):
print(lines[i].rstrip())
print("... ...")
......
......@@ -55,7 +55,7 @@ Usage
with open(filename,'r') as f:
for i in range(12):
print(f.readline())
print(f.readline(), end='')
**Output:**
......@@ -81,4 +81,4 @@ Usage
.. categories::
.. sourcelink::
\ No newline at end of file
.. sourcelink::
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment