aboutsummaryrefslogtreecommitdiffstats
path: root/finance/emma/files/patch-aj
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-11-07 15:36:55 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-11-07 15:36:55 +0000
commitd08a486ae2bcf71839e606057766530805fdd506 (patch)
treefca9b426ae709bed8e6fe6196cc9ee164f7fcd74 /finance/emma/files/patch-aj
parent9f921bcc665517d5622569fea45a8b334206ae87 (diff)
Add EMMA - a personal finance manager for GNOME.
Diffstat (limited to 'finance/emma/files/patch-aj')
-rw-r--r--finance/emma/files/patch-aj20
1 files changed, 20 insertions, 0 deletions
diff --git a/finance/emma/files/patch-aj b/finance/emma/files/patch-aj
new file mode 100644
index 000000000000..803404888a30
--- /dev/null
+++ b/finance/emma/files/patch-aj
@@ -0,0 +1,20 @@
+--- data/standard.py 2000/11/07 14:27:11 1.1
++++ data/standard.py 2000/11/07 14:27:48
+@@ -48,7 +48,7 @@
+ "Example : CurDay()");
+
+ A = NormalisedTime()
+-FirstDayOfMonth = time.mktime(A[0], A[1], 1, A[3], A[4], A[5], A[6], A[7], A[8]);
++FirstDayOfMonth = time.mktime((A[0], A[1], 1, A[3], A[4], A[5], A[6], A[7], A[8]));
+
+ def CurMonth():
+ return emma.date() >= FirstDayOfMonth
+@@ -59,7 +59,7 @@
+ "Example : CurMonth()");
+
+ A = NormalisedTime()
+-FirstDayOfYear = time.mktime(A[0], 1, 1, A[3], A[4], A[5], A[6], A[7], A[8]);
++FirstDayOfYear = time.mktime((A[0], 1, 1, A[3], A[4], A[5], A[6], A[7], A[8]));
+
+ def CurYear():
+ return emma.date() >= FirstDayOfYear