summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Brox <tobias@redpill-linpro.com>2019-09-10 13:43:32 +0000
committerTobias Brox <tobias@redpill-linpro.com>2019-09-10 13:43:32 +0000
commit49046054aaf474fc915022d73af20f03d3b23170 (patch)
treeca9e5b4d876de568d650e046ec60f1f59b624c73
parenta6828d50030dff637e02b58dd4eaf5daf442401d (diff)
downloadcalendar-cli-49046054aaf474fc915022d73af20f03d3b23170.zip
more python3-compatibility, ref https://github.com/tobixen/calendar-cli/issues/33
-rwxr-xr-xcalendar-cli.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/calendar-cli.py b/calendar-cli.py
index 805b47d..89861bd 100755
--- a/calendar-cli.py
+++ b/calendar-cli.py
@@ -42,6 +42,11 @@ try:
except NameError:
raw_input = input
+try:
+ unicode
+except NameError:
+ unicode = str
+
__version__ = "0.11.0.dev0"
__author__ = "Tobias Brox"
__author_short__ = "tobixen"