Index: trunk/packages/invirt-dev/invirtibuilder
===================================================================
--- trunk/packages/invirt-dev/invirtibuilder	(revision 2819)
+++ trunk/packages/invirt-dev/invirtibuilder	(revision 2820)
@@ -354,8 +354,8 @@
 class Invirtibuilder(pyinotify.ProcessEvent):
     """Process inotify triggers to build new packages."""
-    def process_IN_CREATE(self, event):
-        """Handle a created file or directory.
-
-        When an IN_CREATE event comes in, trigger the builder.
+    def process_default(self, event):
+        """Handle an inotify event.
+
+        When an inotify event comes in, trigger the builder.
         """
         build()
@@ -370,5 +370,6 @@
     notifier = pyinotify.Notifier(watch_manager, invirtibuilder)
     watch_manager.add_watch(b._QUEUE_DIR,
-                            pyinotify.EventsCodes.ALL_FLAGS['IN_CREATE'])
+                            pyinotify.EventsCodes.ALL_FLAGS['IN_CREATE'] |
+                            pyinotify.EventsCodes.ALL_FLAGS['IN_MOVED_TO'])
 
     # Before inotifying, run any pending builds; otherwise we won't
