Changeset 4858
- Timestamp:
- May 22, 2017, 1:44:18 PM (4 years ago)
- Location:
- lliurex-abies2pmb/trunk/fuentes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-abies2pmb/trunk/fuentes/debian/changelog
r4674 r4858 1 lliurex-abies2pmb (1.1.7) xenial; urgency=medium 2 3 * Fix bug when input path/file contains whitespaces 4 5 -- Juan Ramon Pelegrina <juapesai@hotmail.com> Mon, 22 May 2017 13:19:52 +0200 6 1 7 lliurex-abies2pmb (1.1.6) xenial; urgency=medium 2 8 -
lliurex-abies2pmb/trunk/fuentes/lliurex-abies2pmb.install/usr/share/lliurex-abies2pmb/ConvertBox.py
r4431 r4858 195 195 196 196 inputfile=self.inputfile_entry.get_filename() 197 output_file=os.path.basename(inputfile).strip(".mdb") +OUTPUT_FILE197 output_file=os.path.basename(inputfile).strip(".mdb").replace(' ' ,'_')+OUTPUT_FILE 198 198 output_path=os.path.join(self.outputpath_entry.get_filename(),output_file) 199 199 self.result_convert=self.core.abies2pmb.beginMigration(inputfile,output_path) … … 233 233 text=text.strip().split("//") 234 234 235 text[1]=text[1].replace('%20',' ') 235 236 check=self.commonFunc.check_extension(text[1]) 236 237 self.inputpath.set_filename(text[1]) … … 293 294 param[3].set_sensitive(True) 294 295 param[3].set_filename(path) 295 name=os.path.basename(param[2]).strip(".mdb") +OUTPUT_FILE296 name=os.path.basename(param[2]).strip(".mdb").replace(' ','_')+OUTPUT_FILE 296 297 param[4].set_text(name) 297 298 param[5].set_text("")
Note: See TracChangeset
for help on using the changeset viewer.