Skip to content

Commit

Permalink
Removed encoding info which doesn't have any effect.
Browse files Browse the repository at this point in the history
  • Loading branch information
milanmajchrak committed Jan 10, 2024
1 parent 695fd47 commit bb8509b
Show file tree
Hide file tree
Showing 105 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions const.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
import logging

user = "[email protected]"
password = "dspace"
password = "admin"
authentication = True

# http or https
use_ssl = False
# host = "localhost"
host = "dev-5.pc"
# fe_port = ":4000"
fe_port = None
# be_port = ":8080"
be_port = None
fe_port = ":85"
# fe_port = None
be_port = ":85"
# be_port = None
be_location = "/server/"

# config logging
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
2 changes: 1 addition & 1 deletion support/dspace_interface/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ def create_bitstream(self, bundle=None, name=None, path=None, mime=None,

mp_encoder = MultipartEncoder(
fields={
'file': (name, open(path, 'rb'), 'text/plain'),
'file': (name, open(path, 'rb')),
}
)
h.update({'Content-Type': mp_encoder.content_type})
Expand Down

0 comments on commit bb8509b

Please sign in to comment.