Skip to content

Commit c865d9b

Browse files
committed
affiliated -> associated
1 parent 48fe339 commit c865d9b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# DataMeta - submission server for data and affiliated metadata
1+
# DataMeta - submission server for data and associated metadata
22

33
- Initial version.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DataMeta - submission server for data and affiliated metadata
1+
# DataMeta - submission server for data and associated metadata
22

33
## Getting Started
44

datameta/tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_passing_view(self):
5555
from .views.default import my_view
5656
info = my_view(dummy_request(self.session))
5757
self.assertEqual(info['one'].name, 'one')
58-
self.assertEqual(info['project'], 'DataMeta - submission server for data and affiliated metadata')
58+
self.assertEqual(info['project'], 'DataMeta - submission server for data and associated metadata')
5959

6060

6161
class TestMyViewFailureCondition(BaseTest):

datameta/views/default.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def my_view(request):
1313
one = query.filter(models.MyModel.name == 'one').first()
1414
except DBAPIError:
1515
return Response(db_err_msg, content_type='text/plain', status=500)
16-
return {'one': one, 'project': 'DataMeta - submission server for data and affiliated metadata'}
16+
return {'one': one, 'project': 'DataMeta - submission server for data and associated metadata'}
1717

1818

1919
db_err_msg = """\

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
setup(
5252
name='datameta',
5353
version='0.9.0alpha1',
54-
description='DataMeta - submission server for data and affiliated metadata',
54+
description='DataMeta - submission server for data and associated metadata',
5555
long_description=README + '\n\n' + CHANGES,
5656
classifiers=[
5757
'Programming Language :: Python',

0 commit comments

Comments
 (0)