Skip to content

Commit

Permalink
mergejs: Remove white space around filename. No functional change. (c…
Browse files Browse the repository at this point in the history
…loses #2026)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@9170 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
  • Loading branch information
fredj committed Apr 2, 2009
1 parent 4254d1e commit 3c863c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/OpenLayers/Request.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* full text of the license. */

/**
* @requires OpenLayers/Events.js
* @requires OpenLayers/Events.js
*/

/**
Expand Down
4 changes: 2 additions & 2 deletions tools/mergejs.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def run (sourceDirectory, outputFilename = None, configFile = None):
## TODO: Do import when we walk the directories above?
for filepath in allFiles:
print "Importing: %s" % filepath
fullpath = os.path.join(sourceDirectory, filepath)
fullpath = os.path.join(sourceDirectory, filepath).strip()
content = open(fullpath, "U").read() # TODO: Ensure end of line @ EOF?
files[filepath] = SourceFile(filepath, content) # TODO: Chop path?

Expand Down Expand Up @@ -181,7 +181,7 @@ def run (sourceDirectory, outputFilename = None, configFile = None):
order.append(filepath)
if not files.has_key(filepath):
print "Importing: %s" % filepath
fullpath = os.path.join(sourceDirectory, filepath)
fullpath = os.path.join(sourceDirectory, filepath).strip()
content = open(fullpath, "U").read() # TODO: Ensure end of line @ EOF?
files[filepath] = SourceFile(filepath, content) # TODO: Chop path?

Expand Down

0 comments on commit 3c863c8

Please sign in to comment.