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 <[email protected]> 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) ->
signature.asc
Description: OpenPGP digital signature

