From 84c7977792b1bd38510e6cb1817dd5489c75a695 Mon Sep 17 00:00:00 2001
From: Peter Kjellerstedt <pkj@axis.com>
Date: Mon, 10 Dec 2012 16:20:45 +0100
Subject: [PATCH] Make the "Raw file URL mask" field show for Git repositories
---
reviewboard/scmtools/models.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/reviewboard/scmtools/models.py b/reviewboard/scmtools/models.py
index 1252215..8d39f96 100644
--- a/reviewboard/scmtools/models.py
+++ b/reviewboard/scmtools/models.py
@@ -21,7 +21,7 @@ class Tool(models.Model):
supports_authentication = property(
lambda x: x.scmtool_class.supports_authentication)
supports_raw_file_urls = property(
- lambda x: x.get_scmtool_class.supports_raw_file_urls)
+ lambda x: x.scmtool_class.supports_raw_file_urls)
field_help_text = property(
lambda x: x.scmtool_class.field_help_text)
--
1.7.11.7