diff options
author | Georg Brandl <georg@python.org> | 2014-09-19 21:28:13 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-09-19 21:28:13 +0200 |
commit | 03a434d757af1e952d8281da3d1f08139b1781ae (patch) | |
tree | c80b837c32efa7c210b8acdad8e54fee255d5a54 | |
parent | d2d62586a9f4abd910675ff6e16686b6a722528c (diff) | |
download | pygments-03a434d757af1e952d8281da3d1f08139b1781ae.tar.gz |
Fix import.
-rw-r--r-- | tests/test_lexers_other.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_lexers_other.py b/tests/test_lexers_other.py index 91b0dc70..5e1ee098 100644 --- a/tests/test_lexers_other.py +++ b/tests/test_lexers_other.py @@ -12,7 +12,7 @@ import os import unittest from pygments.lexers import guess_lexer -from pygments.lexers.other import RexxLexer +from pygments.lexers.scripting import RexxLexer def _exampleFilePath(filename): |