chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
496d3d1
)
Don't reset a repo if its .fdroidvcs file ends with a newline
author
Daniel Martí
<mvdan@mvdan.cc>
Wed, 5 Mar 2014 12:22:58 +0000
(13:22 +0100)
committer
Daniel Martí
<mvdan@mvdan.cc>
Wed, 5 Mar 2014 12:22:58 +0000
(13:22 +0100)
fdroidserver/common.py
patch
|
blob
|
history
diff --git
a/fdroidserver/common.py
b/fdroidserver/common.py
index 8ef38bb8351ab0c2a8208ffe20a36dec25be7d87..a64d29a48c21d84af16243cb7d575c8b50c4a36c 100644
(file)
--- a/
fdroidserver/common.py
+++ b/
fdroidserver/common.py
@@
-250,7
+250,7
@@
class vcs:
if os.path.exists(self.local):
if os.path.exists(fdpath):
with open(fdpath, 'r') as f:
- fsdata = f.read()
+ fsdata = f.read()
.strip()
if fsdata == cdata:
writeback = False
else: