Sat Oct 14 15:57:12 EDT 2006  "Kurt B. Kaiser" <[EMAIL PROTECTED]>
  * 1.0.31a : darcs_load_dirs should not stop if a boring file is skipped by 
darcs
New patches:

[1.0.31a : darcs_load_dirs should not stop if a boring file is skipped by darcs
"Kurt B. Kaiser" <[EMAIL PROTECTED]>**20061014195712] 
<
> {
hunk ./debian/changelog 1
+tla-load-dirs (1.0.31a) unstable; urgency=low
+
+  * darcs_load_dirs should not stop if a boring file is skipped by darcs
+
+ -- Kurt B. Kaiser <[EMAIL PROTECTED]>  Sat, 14 Oct 2006 11:36:29 -0400
+
 tla-load-dirs (1.0.31) unstable; urgency=high
 
   * Update deps on load-dirs-common.  Closes: #385644.
hunk ./tla_support/tla_wc.py 78
             # Darcs will see adds later, but we need to add dirs
             # now so darcs mv will work.
             util.chdircmd(self.wcpath, util.safeexec, tlacmd,
-                          cmd().add + [file])
+                          cmd().add + [file], expected=None)
 
     def movetag(self, src, dest):
         if self.verb:
hunk ./tla_support/util.py 94
     info = ",".join(info)
     if not os.WIFEXITED(result):
         raise ExecProblem, info
-    if os.WEXITSTATUS(result) != expected:
-        raise ExecProblem, info + " (expected exit code %d)" % expected
+    if expected:
+        if os.WEXITSTATUS(result) != expected:
+            raise ExecProblem, info + " (expected exit code %d)" % expected
     return result
 
 def checkpid(pid, expected):
}

Context:

[Initial import 1.0.31
"Kurt B. Kaiser" <[EMAIL PROTECTED]>**20061014152302] 
Patch bundle hash:
78fd79835c3214c34d588e3f748431c1cddf4e5e

Reply via email to