changeset 3005:7f520c24686c beta

removed garbage return statement
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 14 Nov 2012 21:52:50 +0100
parents 3bfd5852c218
children 9b95dc7c4570
files rhodecode/lib/vcs/nodes.py
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/lib/vcs/nodes.py	Wed Nov 14 21:44:47 2012 +0100
+++ b/rhodecode/lib/vcs/nodes.py	Wed Nov 14 21:52:50 2012 +0100
@@ -411,7 +411,6 @@
         """
         Returns True if file has binary content.
         """
-        return False
         _bin = '\0' in self._get_content()
         return _bin