Fix missing rule description in HACKING.rst

The description of N363 hacking rule is missing
in HACKING.rst.
Add the description.

Change-Id: I036a48612fcd256df4ccbd2ebba814bf3ed7a1c2
Closes-Bug: #1840862
This commit is contained in:
Takashi NATSUME 2019-08-21 10:34:51 +09:00
parent 4e9d224479
commit 5ccdbc7189
1 changed files with 1 additions and 0 deletions

View File

@ -73,6 +73,7 @@ Nova Specific Commandments
- [N362] Imports for privsep modules should be specific. Use "import nova.privsep.path",
not "from nova.privsep import path". This ensures callers know that the method they're
calling is using priviledge escalation.
- [N363] Disallow ``(not_a_tuple)`` because you meant ``(a_tuple_of_one,)``.
Creating Unit Tests
-------------------