comparison svncommand.py @ 240:1aa1d2d406d9

Lose old mode constants, not used anymore.
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Wed, 08 Apr 2009 16:20:14 +0200
parents 2165461d2dd8
children 4950b18cf949
comparison
equal deleted inserted replaced
239:e2214c8fc91f 240:1aa1d2d406d9
15 from push_cmd import commit_from_rev 15 from push_cmd import commit_from_rev
16 from diff_cmd import diff_command 16 from diff_cmd import diff_command
17 from rebuildmeta import rebuildmeta 17 from rebuildmeta import rebuildmeta
18 # shut up, pyflakes, we must import those 18 # shut up, pyflakes, we must import those
19 __x = [print_wc_url, fetch_revisions, commit_from_rev, diff_command, rebuildmeta] 19 __x = [print_wc_url, fetch_revisions, commit_from_rev, diff_command, rebuildmeta]
20
21 mode755 = (stat.S_IXUSR | stat.S_IXGRP| stat.S_IXOTH | stat.S_IRUSR |
22 stat.S_IRGRP| stat.S_IROTH | stat.S_IWUSR)
23 mode644 = (stat.S_IRUSR | stat.S_IRGRP| stat.S_IROTH | stat.S_IWUSR)
24 20
25 21
26 def svncmd(ui, repo, subcommand, *args, **opts): 22 def svncmd(ui, repo, subcommand, *args, **opts):
27 if subcommand not in svn_subcommands: 23 if subcommand not in svn_subcommands:
28 candidates = [] 24 candidates = []