Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gajim-plugins
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
62
Issues
62
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gajim
gajim-plugins
Commits
1ede565e
Commit
1ede565e
authored
Nov 20, 2018
by
Philipp Hörist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[birthday_reminder] Fix incorrect named var
parent
1b868764
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
birthday_reminder/plugin.py
birthday_reminder/plugin.py
+2
-2
No files found.
birthday_reminder/plugin.py
View file @
1ede565e
...
...
@@ -40,7 +40,7 @@ class BirthDayPlugin(GajimPlugin):
self
.
events_handlers
=
{
'vcard-received'
:
(
ged
.
GUI2
,
self
.
_vcard_received
)}
self
.
timeout_id
=
None
self
.
_
timeout_id
=
None
self
.
_timeout_id_start
=
None
self
.
showed_accounts
=
[]
...
...
@@ -56,7 +56,7 @@ class BirthDayPlugin(GajimPlugin):
def
deactivate
(
self
):
if
self
.
_timeout_id
is
not
None
:
GLib
.
source_remove
(
self
.
timeout_id
)
GLib
.
source_remove
(
self
.
_
timeout_id
)
if
self
.
_timeout_id_start
is
not
None
:
GLib
.
source_remove
(
self
.
_timeout_id_start
)
...
...
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