浏览代码

Fix commit 7a7b21c921

master
Ricardo Branco 6 年前
父节点
当前提交
ec86967e37
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      clean_registry.py

+ 3
- 3
clean_registry.py 查看文件

11
   - This script may run stand-alone (on local setups) or dockerized (which supports remote Docker setups).
11
   - This script may run stand-alone (on local setups) or dockerized (which supports remote Docker setups).
12
   - This script is Python 3 only.
12
   - This script is Python 3 only.
13
 
13
 
14
-v1.3 by Ricardo Branco
14
+v1.3.1 by Ricardo Branco
15
 
15
 
16
 MIT License
16
 MIT License
17
 """
17
 """
34
 
34
 
35
 import yaml
35
 import yaml
36
 
36
 
37
-VERSION = "1.3"
37
+VERSION = "1.3.1"
38
 REGISTRY_DIR = "REGISTRY_STORAGE_FILESYSTEM_ROOTREGISTRY_DIR"
38
 REGISTRY_DIR = "REGISTRY_STORAGE_FILESYSTEM_ROOTREGISTRY_DIR"
39
 
39
 
40
 
40
 
197
 
197
 
198
         if self.container is not None:
198
         if self.container is not None:
199
             self.docker.api.start(self.container)
199
             self.docker.api.start(self.container)
200
-            self.docker.close()
201
 
200
 
201
+        self.docker.close()
202
         return exit_status
202
         return exit_status
203
 
203
 
204
     def get_file(self, path):
204
     def get_file(self, path):

正在加载...
取消
保存