summaryrefslogtreecommitdiff
path: root/fastimport/parser.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2012-04-04 01:59:52 +0200
committerJelmer Vernooij <jelmer@samba.org>2012-04-04 01:59:52 +0200
commite027fb49874db5d389fa2fd15706dcb5820db3f3 (patch)
tree8adb16ef040fc636be5f4b8d3df975295d1aeda0 /fastimport/parser.py
parent8b55e15ce39ce5b08eb3be8b793d6f0f81f45ab9 (diff)
downloadpython-fastimport-git-e027fb49874db5d389fa2fd15706dcb5820db3f3.tar.gz
Add basic tests for dates.
Diffstat (limited to 'fastimport/parser.py')
-rw-r--r--fastimport/parser.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/fastimport/parser.py b/fastimport/parser.py
index ca8e294..88eecfa 100644
--- a/fastimport/parser.py
+++ b/fastimport/parser.py
@@ -162,9 +162,11 @@ The grammar is:
import re
import sys
-import commands
-import dates
-import errors
+from fastimport import (
+ commands,
+ dates,
+ errors,
+ )
## Stream parsing ##