Skip to content

Commit 377607a

Browse files
change output file format from .chi to .xy
1 parent 3c6b128 commit 377607a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/diffpy/labpdfproc/labpdfprocapp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ def main():
115115
for filepath in args.input_paths:
116116
outfilestem = filepath.stem + "_corrected"
117117
corrfilestem = filepath.stem + "_cve"
118-
outfile = args.output_directory / (outfilestem + ".chi")
119-
corrfile = args.output_directory / (corrfilestem + ".chi")
118+
outfile = args.output_directory / (outfilestem + ".xy")
119+
corrfile = args.output_directory / (corrfilestem + ".xy")
120120

121121
if outfile.exists() and not args.force_overwrite:
122122
sys.exit(

0 commit comments

Comments
 (0)