Переглянути джерело

deploy-ng: catch more egg2bam errors with Python 2.7

rdb 7 роки тому
батько
коміт
3a2a29a1aa
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      direct/src/dist/commands.py

+ 1 - 1
direct/src/dist/commands.py

@@ -65,7 +65,7 @@ def egg2bam(_build_cmd, srcpath, dstpath):
         ])
         ])
     except FileNotFoundError:
     except FileNotFoundError:
         raise RuntimeError('egg2bam failed: egg2bam was not found in the PATH')
         raise RuntimeError('egg2bam failed: egg2bam was not found in the PATH')
-    except subprocess.CalledProcessError as err:
+    except (subprocess.CalledProcessError, OSError) as err:
         raise RuntimeError('egg2bam failed: {}'.format(err))
         raise RuntimeError('egg2bam failed: {}'.format(err))
     return dstpath
     return dstpath