summaryrefslogtreecommitdiff
path: root/docs/faq.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/faq.rst')
-rw-r--r--docs/faq.rst15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/faq.rst b/docs/faq.rst
deleted file mode 100644
index 7c35567..0000000
--- a/docs/faq.rst
+++ /dev/null
@@ -1,15 +0,0 @@
-###
-FAQ
-###
-
-How can I close or reopen an issue?
-===================================
-
-
-Set the issue ``state_event`` attribute to ``close`` or ``reopen`` and save the object:
-
-.. code-block:: python
-
- issue = my_project.issues.get(issue_id)
- issue.state_event = 'close'
- issue.save()