tags 669541 + patch
thanks

replacing the octal number with a hex fixes the build.
I didn't do any runtime testing with it.
Description: replace octal number with hex
Author: Julian Taylor <jtaylor.deb...@googlemail.com>
Bug-Debian: http://bugs.debian.org/669541

--- underscore.logger-0.3.0~20111114.orig/src/underscore.logger.coffee
+++ underscore.logger-0.3.0~20111114/src/underscore.logger.coffee
@@ -50,9 +50,9 @@ class Logger
     result  = ""
     i       = 0
     while color = colors[i]
-      result += "\033[#{color}m"
+      result += "\x1b[#{color}m"
       i++
-    result += "#{string}\033[#{Logger.ANSI.OFF}m"
+    result += "#{string}\x1b[#{Logger.ANSI.OFF}m"
     result
   
   format: (date, level, message) ->

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
Pkg-javascript-devel mailing list
Pkg-javascript-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-javascript-devel

Reply via email to