Skip to content

Commit fa470b1

Browse files
committed
Closes #16
1 parent 82d5803 commit fa470b1

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Changelog
22

33
## 0.2.3
4-
Clarified exception messages
4+
- Clarified exception messages
5+
- Fixed Python 2.7 issues
56

67
## 0.2.2
78
Fixed version issues

SSHKeyDistribut0r/key_distribut0r.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
from __future__ import print_function
3+
from __future__ import print_function, unicode_literals
44
import io
55
import json
66
import logging

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ def get_requirements():
2929
'Intended Audience :: Developers',
3030
'Intended Audience :: System Administrators',
3131
'Programming Language :: Python',
32+
'Programming Language :: Python :: 2',
33+
'Programming Language :: Python :: 2.7',
34+
'Programming Language :: Python :: 3',
3235
'Programming Language :: Python :: 3.6',
3336
'Programming Language :: Python :: 3.7',
34-
'Programming Language :: Python',
3537
'Operating System :: OS Independent',
3638
'Topic :: Communications :: File Sharing',
3739
'Topic :: Security',

0 commit comments

Comments
 (0)