From f2f82688cb571b2f80f65b38a85c57a9f216f146 Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Mon, 22 Aug 2011 14:37:01 +0200 Subject: [PATCH] Add script to convert to Python 3 format --- convert-to-python3.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 convert-to-python3.sh diff --git a/convert-to-python3.sh b/convert-to-python3.sh new file mode 100755 index 0000000..1ac8be6 --- /dev/null +++ b/convert-to-python3.sh @@ -0,0 +1,7 @@ +#!/bin/sh +# Convert urlwatch sources to Python 3.x compatible format + +SOURCES="urlwatch lib/urlwatch/*.py examples/hooks.py.example setup.py" + +2to3 -w $SOURCES + -- 2.11.4.GIT