diff options
Diffstat (limited to 'importpkg.py')
-rwxr-xr-x | importpkg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/importpkg.py b/importpkg.py index 7bca70b..4f00407 100755 --- a/importpkg.py +++ b/importpkg.py @@ -79,7 +79,7 @@ def main(): type=urllib.request.urlopen, help="read from this location instead of stdin") args = parser.parse_args() - dumper = yaml.SafeDumper(sys.stdout) + dumper = yaml.CSafeDumper(sys.stdout) dumper.open() if args.hash: args.input = HashedStream(args.input, hashlib.sha256()) |