<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1 +1,2 @@
-recursive-include autonose *.nib
\ No newline at end of file
+recursive-include autonose *.nib
+recursive-include autonose *.css</diff>
      <filename>MANIFEST.in</filename>
    </modified>
    <modified>
      <diff>@@ -68,7 +68,7 @@ class Main(mandy.Command):
 				time.sleep(self.opts.wait)
 		except Exception, e:
 			log.error(e.message)
-			traceback.print_exc()
+			log.error(traceback.format_exc())
 			raise
 		finally:
 			if self.ui is not None:
@@ -76,12 +76,13 @@ class Main(mandy.Command):
 				self.ui.finalize()
 	
 	def init_logging(self):
-		if self.opts.debug or self.opts.info:
-			lvl = logging.DEBUG if self.opts.debug else logging.INFO
-			format = '[%(levelname)s] %(name)s: %(message)s'
-			logging.basicConfig(level=lvl, format=format)
-		else:
-			logging.getLogger().addHandler(NullHandler())
+		format = '[%(levelname)s] %(name)s: %(message)s'
+		lvl = logging.ERROR
+		if self.opts.debug:
+			lvl = logging.DEBUG
+		elif self.opts.info:
+			lvl = logging.INFO
+		logging.basicConfig(level=lvl, format=format)
 
 	def init_nose_args(self):
 		self.nose_args = ['nosetests','--nologcapture', '--exe']
@@ -125,7 +126,7 @@ class Main(mandy.Command):
 		watcher_plugin.enable()
 		nose_args = self.nose_args + self._extra_nose_args
 		
-		plugins = getattr(self.ui, 'addplugins') #FIXME: remove once nosexml is packaged externally
+		plugins = getattr(self.ui, 'addplugins', []) #FIXME: remove once nosexml is packaged externally
 
 		nose.run(argv=nose_args, addplugins = plugins + [watcher_plugin])
 </diff>
      <filename>autonose/runner.py</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 from setuptools import *
 setup(
 	name='autonose',
-	version='0.1.1',
+	version='0.1.2',
 	author_email='tim3d.junk+autonose@gmail.com',
 	author='Tim Cuthbertson',
 	url='http://github.com/gfxmonk/autonose',</diff>
      <filename>setup.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c9ca9ba9526090e3b047b5dc8b1b1656ef20cac4</id>
    </parent>
  </parents>
  <author>
    <name>Tim Cuthbertson</name>
    <email>tim3d.junk@gmail.com</email>
  </author>
  <url>http://github.com/gfxmonk/autonose/commit/5c8824aed9094072f6c3ddb8bf05ef57e1dea3f6</url>
  <id>5c8824aed9094072f6c3ddb8bf05ef57e1dea3f6</id>
  <committed-date>2009-06-26T21:02:14-07:00</committed-date>
  <authored-date>2009-06-26T21:02:14-07:00</authored-date>
  <message>minor bug fixes
 - fixed bug in runner when ui.addplugins does not exist
   (e.g in console mode)
 - log level is now ERROR by default (instead of none)
 - MANIFEST includes css files</message>
  <tree>d0537507ba5da7d237788c13d1ba7a3877718b1d</tree>
  <committer>
    <name>Tim Cuthbertson</name>
    <email>tim3d.junk@gmail.com</email>
  </committer>
</commit>
