changeset 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 e2214c8fc91f
children 4950b18cf949
files svncommand.py
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/svncommand.py
+++ b/svncommand.py
@@ -18,10 +18,6 @@ from rebuildmeta import rebuildmeta
 # shut up, pyflakes, we must import those
 __x = [print_wc_url, fetch_revisions, commit_from_rev, diff_command, rebuildmeta]
 
-mode755 = (stat.S_IXUSR | stat.S_IXGRP| stat.S_IXOTH | stat.S_IRUSR |
-           stat.S_IRGRP| stat.S_IROTH | stat.S_IWUSR)
-mode644 = (stat.S_IRUSR | stat.S_IRGRP| stat.S_IROTH | stat.S_IWUSR)
-
 
 def svncmd(ui, repo, subcommand, *args, **opts):
     if subcommand not in svn_subcommands: