From 0a7bed648eb0a747ceb26f6ca065db7d1681bd54 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Fri, 8 Aug 2008 11:19:50 +0000 Subject: [PATCH] Two small style fixes Reviewed-by: iustinp --- Makefile.am | 2 +- lib/opcodes.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 4910ff380..5c5c6b66f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,7 +3,7 @@ # - Keep files sorted; one line per file. # - Directories in lib/ must have their own *dir variable (see hypervisor). # - All directories must be listed DIRS. -# - Use autogen.sh to generate Makefile.in and configure script +# - Use autogen.sh to generate Makefile.in and configure script. # Automake doesn't export these variables before version 1.10. abs_top_builddir = @abs_top_builddir@ diff --git a/lib/opcodes.py b/lib/opcodes.py index 3900e97f6..c5062a399 100644 --- a/lib/opcodes.py +++ b/lib/opcodes.py @@ -428,11 +428,13 @@ class OpExportInstance(OpCode): OP_ID = "OP_BACKUP_EXPORT" __slots__ = ["instance_name", "target_node", "shutdown"] + class OpRemoveExport(OpCode): """Remove an instance's export.""" OP_ID = "OP_BACKUP_REMOVE" __slots__ = ["instance_name"] + # Tags opcodes class OpGetTags(OpCode): """Returns the tags of the given object.""" -- GitLab