Skip to content

Commit

Permalink
Fix syntax error.
Browse files Browse the repository at this point in the history
  • Loading branch information
miracle2k committed May 13, 2013
1 parent 98b8c50 commit f89c1a0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,9 +875,8 @@ def test_assets(self):
# https://github.com/travis-ci/travis-ci/issues/746
from PIL import Image
Image.new('RGB', (10,10)).save(StringIO(), 'png')
except ImportError, IOError):
except (ImportError, IOError):
raise SkipTest()

self.create_files({'noise.scss': 'h1 {background: background-noise()}'})
self.mkbundle('noise.scss', filters='pyscss', output='out.css').build()

Expand Down

0 comments on commit f89c1a0

Please sign in to comment.