Rename parser.py to srcparser.py to prevent naming conflicts with built-in Python parser library.

This commit is contained in:
Stefan Rado 2014-02-15 21:12:15 +01:00
parent ed3ffc26d6
commit 2e4c26c957
2 changed files with 2 additions and 2 deletions

View File

@ -40,12 +40,12 @@
#
import scanner
import parser
import srcparser
import xmlout
import dokuwikiout
# Initialize parser
prs = parser.Parser()
prs = srcparser.Parser()
# Scan directories, and parse the files
sc = scanner.Scanner()