summaryrefslogtreecommitdiff
path: root/finance/emma/patches
diff options
context:
space:
mode:
authordrochner <drochner>2002-01-29 19:41:30 +0000
committerdrochner <drochner>2002-01-29 19:41:30 +0000
commit7baa9e26013f47290fb3de745e5bf21ead1bf4ec (patch)
treee881e33c84544b63003aea92dfd60c15915f4b1d /finance/emma/patches
parent3dc12a9847bbfc5ecefff8e795417ffc001a885e (diff)
downloadpkgsrc-7baa9e26013f47290fb3de745e5bf21ead1bf4ec.tar.gz
use Python 1.5 - it seems this program was developed with it
Diffstat (limited to 'finance/emma/patches')
-rw-r--r--finance/emma/patches/patch-ad22
1 files changed, 0 insertions, 22 deletions
diff --git a/finance/emma/patches/patch-ad b/finance/emma/patches/patch-ad
deleted file mode 100644
index 3864ea309b3..00000000000
--- a/finance/emma/patches/patch-ad
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2001/07/02 14:29:45 drochner Exp $
-
---- data/standard.py.orig Mon Jul 2 15:12:57 2001
-+++ data/standard.py Mon Jul 2 15:13:41 2001
-@@ -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