bug: stand-alone still used old encoding format (#109)

* bug: stand-alone still used old encoding format
This commit is contained in:
JR Conlin 2019-04-02 13:33:15 -07:00 committed by GitHub
parent a8e4440419
commit 051e1575a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ def get_config():
parser.add_argument("--key", help="Vapid private key file path")
parser.add_argument("--curl", help="Don't send, display as curl command",
default=False, action="store_true")
parser.add_argument("--encoding", default="aesgcm")
parser.add_argument("--encoding", default="aes128gcm")
args = parser.parse_args()

View File

@ -4,7 +4,7 @@ import os
from setuptools import find_packages, setup
__version__ = "1.9.1"
__version__ = "1.9.2"
def read_from(file):