Skip to content

Commit

Permalink
fixed deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
devsnd committed Apr 11, 2020
1 parent 911b757 commit aaa834e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion devscripts/deploy.py
Expand Up @@ -18,7 +18,7 @@ def prog_exists(exe):
with open(os.devnull,'w') as devnull:
prog = sp.Popen([exe], stdin=devnull, stdout=devnull)
stout, sterr = prog.communicate('')
except IOError:
except (IOError, OSError):
print('Warning: "%s" was not found.' % exe)
return False
return True
Expand Down
4 changes: 2 additions & 2 deletions res/bootstrap3/gen/cherrymusic.css
Expand Up @@ -3915,15 +3915,15 @@ textarea.input-group-sm > .input-group-btn > .btn {
}
.label {
display: inline;
padding: .2em .6em .3em;
padding: 0.2em 0.6em 0.3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
border-radius: 0.25em;
}
.label[href]:hover,
.label[href]:focus {
Expand Down

0 comments on commit aaa834e

Please sign in to comment.