Applying Python 3 support patch by Brian Jones.
diff --git a/example.py b/example.py
index f5a8e6f..ffa78e7 100644
--- a/example.py
+++ b/example.py
@@ -3,13 +3,13 @@
 from dateutil.rrule import *
 from dateutil.parser import *
 from datetime import *
-import commands
+import subprocess
 import os
-now = parse(commands.getoutput("date"))
+now = parse(subprocess.getoutput("date"))
 today = now.date()
-year = rrule(YEARLY,bymonth=8,bymonthday=13,byweekday=FR)[0].year
+year = rrule(YEARLY, bymonth=8, bymonthday=13, byweekday=FR)[0].year
 rdelta = relativedelta(easter(year), today)
-print "Today is:", today
-print "Year with next Aug 13th on a Friday is:", year
-print "How far is the Easter of that year:", rdelta
-print "And the Easter of that year is:", today+rdelta
+print("Today is:", today)
+print("Year with next Aug 13th on a Friday is:", year)
+print("How far is the Easter of that year:", rdelta)
+print("And the Easter of that year is:", today+rdelta)