Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ids #559

Merged
merged 2 commits into from
Mar 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/briefcase-using.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ To upload blank forms and completed form instances to :doc:`Aggregate <aggregate

.. rubric:: Workaround

If the form definition has changed, but the changes only affect the question text and do not alter the structure of the collected data (or change the form Id or version), you can:
If the form definition has changed, but the changes only affect the question text and do not alter the structure of the collected data (or change the form ID or version), you can:

#. In :guilabel:`Settings`, temporarily change the location of :file:`ODK Briefcase Storage`.
#. Manually copy the form directory from your original storage location to the temporary location.
Expand Down
2 changes: 1 addition & 1 deletion util/resize.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

def single_resize(imagedir, filename):
"""Resize a single image."""
print("Resisizing %s ..." %filename)
print("Resizing %s ..." %filename)
filepath = os.path.join(imagedir, filename)
image = Image.open(filepath)
old_w, old_h = image.size
Expand Down