Skip to content
This repository was archived by the owner on Apr 3, 2025. It is now read-only.

Commit 2a53928

Browse files
committed
tiny bug in 1.0rc10
1 parent 8863e6f commit 2a53928

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

eduvpn-client.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%global sum client for eduVPN
33

44
Name: eduvpn_client
5-
Version: 1.0rc10
5+
Version: 1.0rc11
66
Release: 1%{?dist}
77
Summary: %{sum}
88

eduvpn/openvpn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def ovpn_to_nm(config, uuid, display_name, username=None):
8585
'ipv6': {'method': 'auto'},
8686
'vpn': {'data': {'auth': config.get('auth', 'SHA256'),
8787
'cipher': config.get('cipher', 'AES-256-CBC'),
88-
'comp-lzo': config.get('comp-lzo', 'adaptive'),
88+
'comp-lzo': config.get('comp-lzo', 'adaptive') or 'adaptive',
8989
'connection-type': config.get('connection-type', 'tls'),
9090
'dev': 'tun',
9191
'remote': ",".join(":".join(r) for r in config['remote']),

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from setuptools import setup, find_packages
77

8-
__version__ = "1.0rc10"
8+
__version__ = "1.0rc11"
99

1010

1111
install_requires = [

0 commit comments

Comments
 (0)