Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
Rename parsing package to upload
Browse files Browse the repository at this point in the history
To avoid confusion with query parsing and record value parsing.
  • Loading branch information
robyoung committed Jul 30, 2013
1 parent b1fe8d7 commit aced449
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,3 @@ def load_filter(filter_name):
fromlist=filter_name.rsplit(".", 1)[0])

return getattr(module, func_name)

File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion backdrop/write/admin_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from admin_ui_helper import url_for
from backdrop.core.bucket import Bucket
from backdrop.core.errors import ParseError, ValidationError
from backdrop.core.parsing import create_parser
from backdrop.core.upload import create_parser
from backdrop.write.signonotron2 import Signonotron2


Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import unittest
from hamcrest import assert_that, only_contains, is_, contains

from backdrop.core.parsing.parse_csv import parse_csv, lines
from backdrop.core.upload.parse_csv import parse_csv, lines
from backdrop.core.errors import ParseError


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from hamcrest import assert_that, only_contains, contains
from backdrop.core.errors import ParseError

from backdrop.core.parsing.parse_excel import parse_excel
from backdrop.core.upload.parse_excel import parse_excel
from tests.support.test_helpers import fixture_path, d_tz


Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
from hamcrest import only_contains, assert_that
from backdrop.core.errors import ParseError
from backdrop.core.parsing.utils import make_records
from backdrop.core.upload.utils import make_records


class TestMakeRecords(unittest.TestCase):
Expand Down

0 comments on commit aced449

Please sign in to comment.