Skip to content

Commit

Permalink
Merge branch 'release_15.07' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Jul 24, 2015
2 parents 898ff31 + 784e07c commit 486ba9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/web/framework/base.py
Expand Up @@ -353,7 +353,7 @@ def base( self ):

@lazy_property
def path( self ):
return self.environ['SCRIPT_NAME'] + self.environ['PATH_INFO']
return self.environ.get('SCRIPT_NAME', '') + self.environ['PATH_INFO']

@lazy_property
def browser_url( self ):
Expand Down

0 comments on commit 486ba9f

Please sign in to comment.