We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a46f03f commit ac79251Copy full SHA for ac79251
1 file changed
src/pinefarm/external/plough.py
@@ -12,7 +12,7 @@
12
from . import interface
13
14
PLOUGHSHARE_LINK_FILENAME = "ploughshare_link.txt"
15
-GRIDS_TMP = "grids"
+GRIDS_FROM_PS = "grids"
16
17
18
class Plough(interface.External):
@@ -71,7 +71,7 @@ def extract_tarball(self):
71
"""Extract the contents."""
72
with tarfile.open(self.tarball, "r:*") as tf:
73
tf.extractall(self.dest)
74
- self.grids_dir = self.dest / self.dir_name / GRIDS_TMP
+ self.grids_dir = self.dest / self.dir_name / GRIDS_FROM_PS
75
grids_list = sorted(os.listdir(self.grids_dir))
76
for grid in grids_list:
77
grid_num, extension = grid.split(".", 2)[1:]
0 commit comments