Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
base repository: gsathya/arm
base: master
head repository: gsathya/arm
compare: bug8004
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 1 file changed
  • 0 comments
  • 1 contributor
Commits on Jan 19, 2013
Previously, saving to '~/foo.txt' would create a '~'
folder in pwd which wasn't intuitive. Now, the '~' is
expanded to the users $HOME dir.
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/cli/logPanel.py
@@ -808,7 +808,7 @@ def saveSnapshot(self, path):
path - path where to save the log snapshot
"""

path = os.path.abspath(path)
path = os.path.abspath(os.path.expanduser(path))

# make dir if the path doesn't already exist
baseDir = os.path.dirname(path)

No commit comments for this range