Skip to content

Commit b78e831

Browse files
committed
Remove original directory name (doesn't fit), bump to 1.1.2
1 parent 737a4de commit b78e831

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SIP Creator
22

3-
Version: 1.1.1
3+
Version: 1.1.2
44

55
Creates an Archivematica-ready transfer (or SIP for another preservation repository) from user-selected directories and files, and generates a pre-populated description spreadsheet using data pulled from DFXML and Brunnhilde (start and end dates, extent, and a scope and content note containing information about the most common file formats present).
66

main.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,7 @@ def write_csv_row(writer, sip_path, bag_files):
262262
file_formats.append(row[0])
263263
file_formats = [format_ or "Unidentified" for format_ in file_formats]
264264
formats_list = ", ".join(file_formats)
265-
scope_content = 'Original directory name: "{}". Most common file formats: {}'.format(
266-
os.path.basename(sip_path), formats_list
267-
)
265+
scope_content = "Most common file formats: {}".format(formats_list)
268266

269267
writer.writerow(
270268
[
@@ -328,7 +326,7 @@ def about_dialog(self):
328326
QMessageBox.information(
329327
self,
330328
"About",
331-
"SIP Creator v1.1.1\nCanadian Centre for Architecture\nDeveloper: Tessa Walsh\n2018-2023\nMIT License\nhttps://github.com/CCA-Public/sipcreator",
329+
"SIP Creator v1.1.2\nCanadian Centre for Architecture\nDeveloper: Tessa Walsh\n2018-2023\nMIT License\nhttps://github.com/CCA-Public/sipcreator",
332330
)
333331

334332
def browse_source(self):

0 commit comments

Comments
 (0)