We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f9ae19 commit b7e4ec1Copy full SHA for b7e4ec1
spython/main/pull.py
@@ -91,6 +91,10 @@ def pull(self,
91
cmd.append(image)
92
bot.info(' '.join(cmd))
93
94
+ # If name is still None, make empty string
95
+ if name is None:
96
+ name = ''
97
+
98
final_image = os.path.join(pull_folder, name)
99
100
# Option 1: For hash or commit, need return value to get final_image
0 commit comments