Skip to content
This repository was archived by the owner on Jan 22, 2018. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions git-p4
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

import optparse, sys, os, marshal, subprocess, shlex
import tempfile, os.path, time, platform
import urllib
import re
import cStringIO
import StringIO
Expand Down Expand Up @@ -1306,6 +1307,9 @@ class P4Sync(Command):
if path.startswith(p):
path = path[len(p):]

# paths come in percent-encoded for @,%,#,* (url-style)
path = urllib.unquote(path)

return path

def splitFilesIntoBranches(self, commit):
Expand Down