Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
e561f844
Commit
e561f844
authored
6 years ago
by
Sam Jenkins
Browse files
Options
Downloads
Patches
Plain Diff
Re #25450 changed sys.version to six.py2
parent
e8d9342d
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/Engineering/EnginX.py
+3
-4
3 additions, 4 deletions
scripts/Engineering/EnginX.py
with
3 additions
and
4 deletions
scripts/Engineering/EnginX.py
+
3
−
4
View file @
e561f844
...
...
@@ -12,8 +12,7 @@ import numpy as np
import
os
from
platform
import
system
from
shutil
import
copy2
from
six
import
u
from
sys
import
version_info
import
six
import
mantid.plots
# noqa
import
Engineering.EnggUtils
as
Utils
...
...
@@ -575,7 +574,7 @@ def focus_texture_mode(run_number, van_curves, van_int, focus_directory, focus_g
banks
=
{}
# read the csv file to work out the banks
# ensure csv reading works on python 2 or 3
if
version_info
[
0
]
>=
3
:
if
not
six
.
PY2
:
with
open
(
dg_file
,
'
r
'
,
newline
=
''
,
encoding
=
'
utf-8
'
)
as
grouping_file
:
group_reader
=
csv
.
reader
(
_decomment_csv
(
grouping_file
),
delimiter
=
'
,
'
)
...
...
@@ -634,7 +633,7 @@ def _save_out(run_number, focus_directory, focus_general, output, enginx_file_na
dat_name
,
genie_filename
,
gss_name
,
hdf5_name
,
nxs_name
=
_find_focus_file_location
(
bank_id
,
focus_directory
,
enginx_file_name_format
,
run_number
)
if
not
u
(
bank_id
).
isnumeric
():
if
not
six
.
u
(
bank_id
).
isnumeric
():
bank_id
=
0
# save the files out to the user directory
simple
.
SaveFocusedXYE
(
InputWorkspace
=
output
,
Filename
=
dat_name
,
SplitFiles
=
False
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment