Skip to content

Commit 91f4bb1

Browse files
authored
Merge pull request #41 from StackStorm-Exchange/fix/40-py3-implicit-imports
Fix pack compatibility under python 3 when implicit relative import was used
2 parents f8016bf + c7af7a7 commit 91f4bb1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v0.5.9
4+
* Fix pack compatibility under python 3 when unsupported implicit relative import was used (#41)
5+
36
## v0.5.8
47
* Minor linting fix
58

actions/lib/ansible_base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import os
22
import sys
33
import subprocess
4-
import shell
54
import ast
65
import json
76
import six
87

8+
from . import shell
9+
910
__all__ = [
1011
'AnsibleBaseRunner'
1112
]

pack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ keywords:
66
- ansible
77
- cfg management
88
- configuration management
9-
version : 0.5.8
9+
version : 0.5.9
1010
author : StackStorm, Inc.
1111

0 commit comments

Comments
 (0)