Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
d850ad9e
Commit
d850ad9e
authored
May 29, 2013
by
Saul Ibarra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed creating offset-naive datetime for epoch
parent
9c840d9b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
presence.py
blink/presence.py
+2
-1
No files found.
blink/presence.py
View file @
d850ad9e
...
...
@@ -15,6 +15,7 @@ from PyQt4.QtCore import Qt, QTimer
from
application.notification
import
IObserver
,
NotificationCenter
,
NotificationData
from
application.python
import
Null
,
limit
from
datetime
import
datetime
from
dateutil.tz
import
tzutc
from
eventlib.green
import
urllib2
from
itertools
import
chain
from
twisted.internet
import
reactor
...
...
@@ -35,7 +36,7 @@ from blink.resources import IconManager, Resources
from
blink.util
import
run_in_gui_thread
epoch
=
datetime
.
fromtimestamp
(
0
)
epoch
=
datetime
.
fromtimestamp
(
0
,
tzutc
()
)
sip_prefix_re
=
re
.
compile
(
"^sips?:"
)
unknown_icon
=
"blink://unknown"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment