-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: http://micolog.googlecode.com/svn/trunk@111 fd139d67-4554…
…-0410-8437-97b8145f5b4d
- Loading branch information
coolchyni
committed
Mar 23, 2010
1 parent
e394e4b
commit 8330ba3
Showing
3 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
application: micolog | ||
application: mlog | ||
version: 1 | ||
runtime: python | ||
api_version: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
from time import * | ||
from calendar import timegm | ||
|
||
# fix for mktime bug | ||
# https://garage.maemo.org/tracker/index.php?func=detail&aid=4453&group_id=854&atid=3201 | ||
mktime = lambda time_tuple: calendar.timegm(time_tuple) + timezone | ||
|