summaryrefslogtreecommitdiff
path: root/pygmentize
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-12-17 20:14:23 +0100
committergbrandl <devnull@localhost>2006-12-17 20:14:23 +0100
commitf3bd48e0ad9b36b8141912f8772eeea2e4f33796 (patch)
treedf19d94bab6b6ed47dcd14e2409419f78dafbfa9 /pygmentize
parent5e6d9a5c9d805e1b6cd9af190ce26b54dd61758c (diff)
downloadpygments-f3bd48e0ad9b36b8141912f8772eeea2e4f33796.tar.gz
[svn] Move command line interface to separate file.
Diffstat (limited to 'pygmentize')
-rwxr-xr-xpygmentize4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygmentize b/pygmentize
index c316500a..0b49e3df 100755
--- a/pygmentize
+++ b/pygmentize
@@ -1,4 +1,4 @@
#!/usr/bin/env python
-import sys, pygments
-sys.exit(pygments.cmdline_main(sys.argv)) \ No newline at end of file
+import sys, pygments.cmdline
+sys.exit(pygments.cmdline.main(sys.argv))