Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
errbot-reminder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRC Team
Errbot Development
errbot-reminder
Commits
1661bc28
There was a problem fetching the pipeline mini graph.
Commit
1661bc28
authored
7 years ago
by
Bruce Cowan
Browse files
Options
Downloads
Patches
Plain Diff
Fix flakes issues
parent
53c17871
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
reminder.py
+3
-1
3 additions, 1 deletion
reminder.py
with
3 additions
and
1 deletion
reminder.py
+
3
−
1
View file @
1661bc28
...
...
@@ -21,12 +21,14 @@ from threading import Timer
from
dateparser
import
parse
from
errbot
import
BotPlugin
,
botcmd
class
ReminderType
:
def
__init__
(
self
,
message
,
time
,
text
):
self
.
message
=
message
self
.
time
=
time
self
.
text
=
text
class
Reminder
(
BotPlugin
):
"""
Allows reminder functionality
"""
...
...
@@ -137,7 +139,7 @@ class Reminder(BotPlugin):
new
=
ReminderType
(
message
,
time
,
text
)
try
:
self
.
_set_reminder
(
reminder
,
idx
)
self
.
_set_reminder
(
new
,
idx
)
except
ValueError
:
return
"
**Error**: Bot cannot time travel (yet)
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment