Skip to content

Commit

Permalink
Merge branch 'master' into ui-framework
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Apr 18, 2013
2 parents 27f0398 + 61fa1f2 commit f9cdb0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distrib/builder/utils.py
Expand Up @@ -11,7 +11,7 @@
def omit_path(path, omitted):
if path.startswith(omitted):
path = path[len(omitted):]
if path[0] == '/': path = path[1:]
if path[0] == '/' or path[0] == '\\': path = path[1:]
return path


Expand Down

0 comments on commit f9cdb0c

Please sign in to comment.